From 3b531d0d7c22799a99b23de9a06951c9337047c5 Mon Sep 17 00:00:00 2001 From: aquanull Date: Wed, 4 Apr 2018 18:26:57 +0800 Subject: [PATCH] Small fixes. --- src/drivers/win/debugger.cpp | 4 ++-- src/drivers/win/debuggersp.cpp | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/drivers/win/debugger.cpp b/src/drivers/win/debugger.cpp index 2aa92940..30275e52 100644 --- a/src/drivers/win/debugger.cpp +++ b/src/drivers/win/debugger.cpp @@ -1770,9 +1770,9 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara { CheckDlgButton(hwndDlg, IDC_DEBUGGER_BREAK_ON_CYCLES, break_on_cycles ? BST_CHECKED : BST_UNCHECKED); CheckDlgButton(hwndDlg, IDC_DEBUGGER_BREAK_ON_INSTRUCTIONS, break_on_instructions ? BST_CHECKED : BST_UNCHECKED); - sprintf(str, "%d", break_cycles_limit); + sprintf(str, "%u", (unsigned)break_cycles_limit); SetDlgItemText(hwndDlg, IDC_DEBUGGER_CYCLES_EXCEED, str); - sprintf(str, "%d", break_instructions_limit); + sprintf(str, "%u", (unsigned)break_instructions_limit); SetDlgItemText(hwndDlg, IDC_DEBUGGER_INSTRUCTIONS_EXCEED, str); CheckDlgButton(hwndDlg, IDC_DEBUGGER_BREAK_ON_BAD_OP, FCEUI_Debugger().badopbreak ? BST_CHECKED : BST_UNCHECKED); diff --git a/src/drivers/win/debuggersp.cpp b/src/drivers/win/debuggersp.cpp index 47b4c8f3..e2180ef9 100644 --- a/src/drivers/win/debuggersp.cpp +++ b/src/drivers/win/debuggersp.cpp @@ -429,7 +429,9 @@ Name* parse(char* lines, const char* filename) } } else { - sscanf(cur->offset, "%*[$]%4X", &(cur->offsetNumeric)); + unsigned int tempOffset; + sscanf(cur->offset, "%*[$]%4X", &(tempOffset)); + cur->offsetNumeric = (uint16)tempOffset; // Add the node to the list of address nodes if (prev) {