From 4b2c18bb237dfc3daec31c8bfb2984f9edeeb36a Mon Sep 17 00:00:00 2001 From: xebra Date: Mon, 24 Dec 2018 04:23:03 +0900 Subject: [PATCH] GE Debugger: Minor fix step count dialog. --- Windows/GEDebugger/GEDebugger.h | 2 +- Windows/ppsspp.rc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/GEDebugger/GEDebugger.h b/Windows/GEDebugger/GEDebugger.h index 271d20569e..f1e23f1f75 100644 --- a/Windows/GEDebugger/GEDebugger.h +++ b/Windows/GEDebugger/GEDebugger.h @@ -51,7 +51,7 @@ public: protected: BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam); private: - void Jump(int value, bool relative); + void Jump(int count, bool relative); }; class CGEDebugger : public Dialog { diff --git a/Windows/ppsspp.rc b/Windows/ppsspp.rc index 144a50db06..2c6ec73d79 100644 --- a/Windows/ppsspp.rc +++ b/Windows/ppsspp.rc @@ -240,7 +240,7 @@ EXSTYLE WS_EX_TOOLWINDOW CAPTION "Step Count" FONT 8, "MS Shell Dlg", 400, 0, 0x1 BEGIN - COMBOBOX IDC_GEDBG_STEPCOUNT_COMBO,6,3,50,13,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP | ES_NUMBER + COMBOBOX IDC_GEDBG_STEPCOUNT_COMBO,6,3,50,13,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP PUSHBUTTON "-",IDC_GEDBG_STEPCOUNT_DEC,58,2,14,14 PUSHBUTTON "+",IDC_GEDBG_STEPCOUNT_INC,73,2,14,14 PUSHBUTTON "Jump",IDC_GEDBG_STEPCOUNT_JUMP,88,2,30,14