Skip to content

Commit

Permalink
Add missing breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Apr 2, 2018
1 parent 8de1477 commit 0e63b4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/NetworkSyncManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ void SMOProtocol::DealWithSMOnlinePack(PacketFunctions &SMOnlinePacket, ScreenNe
SCREENMAN->SetNewScreen(SMOnlineSelectScreen);
}
}
break;
case 1: //Rooms list change
{
int numRooms = SMOnlinePacket.Read1();
Expand All @@ -1007,8 +1008,9 @@ void SMOProtocol::DealWithSMOnlinePack(PacketFunctions &SMOnlinePacket, ScreenNe

s->UpdateRoomsList();
}
}
break;
}
break;
case 3:
RoomInfo info;
info.songTitle = SMOnlinePacket.ReadNT();
Expand Down

0 comments on commit 0e63b4d

Please sign in to comment.