From 90039b50e5a7e0f290799968c496e0f49c77f750 Mon Sep 17 00:00:00 2001 From: pk-2000 <63214388+pk-2000@users.noreply.github.com> Date: Fri, 3 Sep 2021 16:14:57 +0300 Subject: [PATCH] Cursor visibility Set default cursor visibility to false - if a game has a script like Super Simple Mouse System of Shaz the cursor will become visible even if the mkxp.conf setting is set to false. --- src/config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.cpp b/src/config.cpp index 85d148d..193f039 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -158,6 +158,7 @@ void Config::read(int argc, char *argv[]) PO_DESC(winResizable, bool, false) \ PO_DESC(fullscreen, bool, false) \ PO_DESC(fixedAspectRatio, bool, true) \ + PO_DESC(showCursor, bool, false) \ PO_DESC(smoothScaling, bool, true) \ PO_DESC(vsync, bool, false) \ PO_DESC(defScreenW, int, 0) \