Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Fix invert mouse on/off
  • Loading branch information
Sergeanur committed Jan 26, 2020
1 parent 36ecf74 commit 0525e3930b7248b7008d8c4661d198e9c6b34696
Showing with 1 addition and 1 deletion.
  1. +1 −1 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];

0 comments on commit 0525e39

Please sign in to comment.