Assorted UI cleanups. Add a bunch of little image files that may be used in the Ouya port later.
This commit is contained in:
parent
2054e46c1f
commit
09a7bd08fa
43 changed files with 158 additions and 122 deletions
|
@ -570,7 +570,7 @@ namespace MainWindow
|
|||
if (globalUIState == UISTATE_PAUSEMENU)
|
||||
{
|
||||
NativeMessageReceived("run", "");
|
||||
if (disasmWindow[0])
|
||||
if (disasmWindow[0])
|
||||
SendMessage(disasmWindow[0]->GetDlgHandle(), WM_COMMAND, IDC_GO, 0);
|
||||
}
|
||||
else if (Core_IsStepping()) //It is paused, then continue to run
|
||||
|
@ -896,13 +896,15 @@ namespace MainWindow
|
|||
if (raw->data.keyboard.Message == WM_KEYDOWN || raw->data.keyboard.Message == WM_SYSKEYDOWN) {
|
||||
key.flags = KEY_DOWN;
|
||||
key.keyCode = windowsTransTable[GetTrueVKey(raw->data.keyboard)];
|
||||
if (key.keyCode)
|
||||
if (key.keyCode) {
|
||||
NativeKey(key);
|
||||
}
|
||||
} else if (raw->data.keyboard.Message == WM_KEYUP) {
|
||||
key.flags = KEY_UP;
|
||||
key.keyCode = windowsTransTable[GetTrueVKey(raw->data.keyboard)];
|
||||
if (key.keyCode)
|
||||
if (key.keyCode) {
|
||||
NativeKey(key);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue