summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debugwin.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-02-25 08:09:13 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-02-25 08:09:13 +0100
commit6ae44e46f91aa2bd74d9895e6bfd345baebd3d22 (patch)
tree70be3ad6f499bb138c0335e8d2d16790f6f971b3 /src/osd/modules/debugger/debugwin.c
parent33c8d18d612786130c2baafd644604137f6f4ef8 (diff)
Cleanups and version bumpmame0159
Diffstat (limited to 'src/osd/modules/debugger/debugwin.c')
-rw-r--r--src/osd/modules/debugger/debugwin.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/osd/modules/debugger/debugwin.c b/src/osd/modules/debugger/debugwin.c
index 448f35b122c..1ae50bc3c8d 100644
--- a/src/osd/modules/debugger/debugwin.c
+++ b/src/osd/modules/debugger/debugwin.c
@@ -73,11 +73,11 @@ protected:
private:
template <typename T> T *create_window();
- running_machine *m_machine;
- auto_pointer<ui_metrics> m_metrics;
- bool m_waiting_for_debugger;
- simple_list<debugwin_info> m_window_list;
- consolewin_info *m_main_console;
+ running_machine *m_machine;
+ auto_pointer<ui_metrics> m_metrics;
+ bool m_waiting_for_debugger;
+ simple_list<debugwin_info> m_window_list;
+ consolewin_info *m_main_console;
};
@@ -207,9 +207,9 @@ bool debugger_windows::seq_pressed() const
int const vkey = wininput_vkey_for_mame_code(code);
bool const pressed = (vkey != 0) && ((GetAsyncKeyState(vkey) & 0x8000) != 0);
- if (first) // if this is the first in the sequence, result is set equal
+ if (first) // if this is the first in the sequence, result is set equal
result = pressed ^ invert;
- else if (result) // further values are ANDed
+ else if (result) // further values are ANDed
result = result && (pressed ^ invert);
// no longer first, and clear the invert flag