From 0525e3930b7248b7008d8c4661d198e9c6b34696 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Sun, 26 Jan 2020 21:54:20 +0200 Subject: [PATCH] Fix invert mouse on/off --- src/core/Frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp index 38f6aff8..ed424b98 100644 --- a/src/core/Frontend.cpp +++ b/src/core/Frontend.cpp @@ -753,7 +753,7 @@ void CMenuManager::Draw() textToPrint[MENUCOLUMN_RIGHT] = TheText.Get(TheCamera.m_bHeadBob ? "FEM_ON" : "FEM_OFF"); break; case MENUACTION_INVVERT: - textToPrint[MENUCOLUMN_RIGHT] = TheText.Get(MousePointerStateHelper.bInvertVertically ? "FEM_ON" : "FEM_OFF"); + textToPrint[MENUCOLUMN_RIGHT] = TheText.Get(MousePointerStateHelper.bInvertVertically ? "FEM_OFF" : "FEM_ON"); break; case MENUACTION_SCREENRES: { RwChar* res = _psGetVideoModeList()[m_nDisplayVideoMode];