PDA

View Full Version : Copy/Paste bug in ButtonTranslator.cpp


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;

spiff
2006-08-06, 14:05
thx, you are correct ofc