aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/launcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 0d6a3b5e86..d0be18ad47 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -449,7 +449,7 @@ void LauncherDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
close();
break;
case kListSelectionChangedCmd: {
- bool enable = (data >= 0);
+ bool enable = ((int)data >= 0);
if (enable != _startButton->isEnabled()) {
_startButton->setEnabled(enable);
_startButton->draw();