Fixed horrible naming convention

This commit is contained in:
Kayne Ruse
2013-12-25 22:09:59 +11:00
parent baadf554cd
commit a494bfbb38
8 changed files with 58 additions and 18 deletions
+4 -4
View File
@@ -26,8 +26,8 @@
using namespace std;
int worldRoomThread(void* arg) {
WorldRoom* room = reinterpret_cast<WorldRoom*>(arg);
int worldRoomThread(void* argRoom) {
WorldRoom* room = reinterpret_cast<WorldRoom*>(argRoom);
try {
room->Init();
room->Loop();
@@ -40,8 +40,8 @@ int worldRoomThread(void* arg) {
return 0;
}
WorldRoom::WorldRoom(PlayerMap const& arg1):
playerMap(arg1)
WorldRoom::WorldRoom(PlayerMap const& argPlayerMap):
playerMap(argPlayerMap)
{
//
}