Markeen
2006-08-06, 13:21
I stumbled upon this in ButtonTranslator.cpp (line 410) :
else if (strWindow.Equals("trainersettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
else if (strWindow.Equals("profilesettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
shouldn't it be :
else if (strWindow.Equals("trainersettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
else if (strWindow.Equals("profilesettings")) wWindowID = WINDOW_DIALOG_PROFILE_SETTINGS;
else if (strWindow.Equals("trainersettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
else if (strWindow.Equals("profilesettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
shouldn't it be :
else if (strWindow.Equals("trainersettings")) wWindowID = WINDOW_DIALOG_TRAINER_SETTINGS;
else if (strWindow.Equals("profilesettings")) wWindowID = WINDOW_DIALOG_PROFILE_SETTINGS;