diff options
author | 2019-08-25 13:39:06 +1000 | |
---|---|---|
committer | 2019-08-25 13:39:06 +1000 | |
commit | 7031c31c00eb947993fa2b7a6157b6778812a9dd (patch) | |
tree | d03b64b1489aba2d0f1e82b8744bb11d677138a7 /src/osd/windows | |
parent | 792fc52cdc9a35e4e5fcba0ea7869fe26f966625 (diff) |
srcclean (nw)
I'm assuming atronic.cpp was supposed to be Windows-1252 with Euro currency symbol encoding. Everyone please use UTF-8 for source files.
Diffstat (limited to 'src/osd/windows')
-rw-r--r-- | src/osd/windows/window.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/windows/window.h b/src/osd/windows/window.h index 3e9838ba396..b04e35aa110 100644 --- a/src/osd/windows/window.h +++ b/src/osd/windows/window.h @@ -44,9 +44,9 @@ enum class win_window_focus { - NONE, // neither this window nor this thread have focus - THREAD, // a window in this thread has focus - WINDOW // this window has focus directly + NONE, // neither this window nor this thread have focus + THREAD, // a window in this thread has focus + WINDOW // this window has focus directly }; @@ -154,7 +154,7 @@ private: #endif running_machine & m_machine; - bool m_attached_mode; + bool m_attached_mode; }; struct osd_draw_callbacks |