Small fixes.

This commit is contained in:
aquanull 2018-04-04 18:26:57 +08:00
parent da4194ec7a
commit 3b531d0d7c
2 changed files with 5 additions and 3 deletions

View File

@ -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);

View File

@ -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)
{