Skip to content

Commit

Permalink
sdl frontend: Enable coloured cursors by default.
Browse files Browse the repository at this point in the history
Fixes ticket:4387.
  • Loading branch information
Cyp committed May 14, 2016
1 parent c94b543 commit a1c76ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configuration.cpp
Expand Up @@ -150,7 +150,7 @@ bool loadConfig()
// Leave this to false, some system will fail and they can't see the system popup dialog!
war_setFullscreen(ini.value("fullscreen", false).toBool());
war_SetTrapCursor(ini.value("trapCursor", false).toBool());
war_SetColouredCursor(ini.value("coloredCursor", false).toBool());
war_SetColouredCursor(ini.value("coloredCursor", true).toBool());
// this should be enabled on all systems by default
war_SetVsync(ini.value("vsync", true).toBool());
// 640x480 is minimum that we will support
Expand Down

0 comments on commit a1c76ba

Please sign in to comment.