From 06f0bb492bce768cd1da4de14164a93bae66a15d Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 26 Apr 2017 14:03:38 -0500 Subject: [PATCH] winport: fix non-saving KillStylusOffScreen --- desmume/src/frontend/windows/inputdx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desmume/src/frontend/windows/inputdx.cpp b/desmume/src/frontend/windows/inputdx.cpp index f1ddeba10..4c3ef6a0d 100644 --- a/desmume/src/frontend/windows/inputdx.cpp +++ b/desmume/src/frontend/windows/inputdx.cpp @@ -471,6 +471,7 @@ static void LoadInputConfig() allowUpAndDown = GetPrivateProfileInt("Controls","AllowUpAndDown",0,IniName) != 0; allowBackgroundInput = GetPrivateProfileInt("Controls","AllowBackgroundInput",0,IniName) != 0; killStylusTopScreen = GetPrivateProfileInt("Controls","KillStylusTopScreen",0,IniName) != 0; + killStylusOffScreen = GetPrivateProfileInt("Controls","KillStylusOffScreen",0,IniName) != 0; } static void WriteControl(char* name, WORD val)