summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/setup_video.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index eb2d51c56..d80b3ceb6 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -214,7 +214,12 @@ Setup_Video::Setup_Video(const Widget2 *const widget) :
mModeListModel(new ModeListModel),
mModeList(new ListBox(widget, mModeListModel)),
mFsCheckBox(new CheckBox(this, _("Full screen"), mFullScreenEnabled)),
- mCustomCursorCheckBox(new CheckBox(this, _("Custom cursor"),
+ mCustomCursorCheckBox(new CheckBox(this,
+#ifdef ANDROID
+ _("Show cursor"),
+#else
+ _("Custom cursor"),
+#endif
mCustomCursorEnabled)),
mEnableResizeCheckBox(new CheckBox(this, _("Enable resize"),
mEnableResize)),