@@ -33,23 +33,23 @@ void MainConfig::LoadFromINIFile()
3333 const char * pOptionsSection = " Options" ;
3434 if (pINI->GetSection (pOptionsSection))
3535 {
36- this ->MPDebug = pINI->ReadBool (pOptionsSection, " MPDEBUG" , this ->MPDebug );
37- this ->SingleProcAffinity = pINI->ReadBool (pOptionsSection, " SingleProcAffinity" , this ->SingleProcAffinity );
36+ this ->AllowChat = pINI->ReadBool (pOptionsSection, " AllowChat" , this ->AllowChat );
37+ this ->AllowTaunts = pINI->ReadBool (pOptionsSection, " AllowTaunts" , this ->AllowTaunts );
38+ this ->DDrawHandlesClose = pINI->ReadBool (pOptionsSection, " DDrawHandlesClose" , this ->DDrawHandlesClose );
3839 this ->DisableEdgeScrolling = pINI->ReadBool (pOptionsSection, " DisableEdgeScrolling" , this ->DisableEdgeScrolling );
40+ this ->MPDebug = pINI->ReadBool (pOptionsSection, " MPDEBUG" , this ->MPDebug );
3941 this ->QuickExit = pINI->ReadBool (pOptionsSection, " QuickExit" , this ->QuickExit );
42+ this ->SingleProcAffinity = pINI->ReadBool (pOptionsSection, " SingleProcAffinity" , this ->SingleProcAffinity );
4043 this ->SkipScoreScreen = pINI->ReadBool (pOptionsSection, " SkipScoreScreen" , this ->SkipScoreScreen );
41- this ->DDrawHandlesClose = pINI->ReadBool (pOptionsSection, " DDrawHandlesClose" , this ->DDrawHandlesClose );
4244 this ->SpeedControl = pINI->ReadBool (pOptionsSection, " SpeedControl" , this ->SpeedControl );
43- this ->AllowTaunts = pINI->ReadBool (pOptionsSection, " AllowTaunts" , this ->AllowTaunts );
44- this ->AllowChat = pINI->ReadBool (pOptionsSection, " AllowChat" , this ->AllowChat );
4545 }
4646
4747 const char * pVideoSection = " Video" ;
4848 if (pINI->GetSection (pVideoSection))
4949 {
50- this ->WindowedMode = pINI->ReadBool (pVideoSection, " Video.Windowed" , this ->WindowedMode );
51- this ->NoWindowFrame = pINI->ReadBool (pVideoSection, " NoWindowFrame" , this ->NoWindowFrame );
5250 this ->DDrawTargetFPS = pINI->ReadInteger (pVideoSection, " DDrawTargetFPS" , this ->DDrawTargetFPS );
51+ this ->NoWindowFrame = pINI->ReadBool (pVideoSection, " NoWindowFrame" , this ->NoWindowFrame );
52+ this ->WindowedMode = pINI->ReadBool (pVideoSection, " Video.Windowed" , this ->WindowedMode );
5353 }
5454}
5555
0 commit comments