=== modified file 'src/iwSettings.cpp' --- src/iwSettings.cpp 2010-03-24 23:00:29 +0000 +++ src/iwSettings.cpp 2010-03-26 16:09:31 +0000 @@ -50,13 +50,15 @@ * @author NastX */ iwSettings::iwSettings(dskGameInterface *gameDesktop) - : IngameWindow(CGI_SETTINGS, 0xFFFF, 0xFFFF, 370, 172, _("Settings"), LOADER.GetImageN("resource", 41)), + : IngameWindow(CGI_SETTINGS, 0xFFFF, 0xFFFF, 370, 208, _("Settings"), LOADER.GetImageN("resource", 41)), gameDesktop(gameDesktop) { AddText( 46, 15, 40, _("Fullscreen resolution:"), COLOR_YELLOW, 0, NormalFont); AddText( 47, 15, 85, _("Mode:"), COLOR_YELLOW, 0, NormalFont); - AddCheckBox(4, 200, 124, 150, 26, TC_GREY, _("Statistics Scale"), NormalFont, false); - GetCtrl(4)->SetCheck(Settings::inst().ingame.scale_statistics); + AddCheckBox(4, 15, 130, 335, 26, TC_GREY, _("Statistics Scale"), NormalFont, false); + GetCtrl(4)->SetCheck(SETTINGS.ingame.scale_statistics); + AddCheckBox(5, 15, 160, 335, 26, TC_GREY, _("Revert scrolling direction"), NormalFont, false); + GetCtrl(5)->SetCheck(SETTINGS.interface.revert_mouse); // "Vollbild" ctrlOptionGroup *optiongroup = AddOptionGroup(10, ctrlOptionGroup::CHECK, scale); @@ -165,6 +167,7 @@ } case 5: { + SETTINGS.interface.revert_mouse = checked; break; } }