diff options
author | 2021-09-26 14:15:42 +1000 | |
---|---|---|
committer | 2021-09-26 14:15:42 +1000 | |
commit | b225f4db4a42978ec6d3384716d340cc204c3a56 (patch) | |
tree | 925c3a934e542eef41cff9ec3d9a2cd6634a176b /src/osd/modules/debugger | |
parent | 3066057077c9a1e500f885cc0b1c6bd5dd523b6d (diff) |
srcclean in preparation for MAME 0.235, and two small adjustments.
* Reduce repeated directory walking in cleansrc target (substantially
improves speed of building the target on Windows).
* Disable a validity check using an MSVC language extension when using
clang in MSVC ABI mode.
Diffstat (limited to 'src/osd/modules/debugger')
-rw-r--r-- | src/osd/modules/debugger/debuggdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debuggdbstub.cpp b/src/osd/modules/debugger/debuggdbstub.cpp index 55f09087f35..9f26fb2c778 100644 --- a/src/osd/modules/debugger/debuggdbstub.cpp +++ b/src/osd/modules/debugger/debuggdbstub.cpp @@ -421,7 +421,7 @@ class debug_gdbstub : public osd_module, public debug_module public: debug_gdbstub() : osd_module(OSD_DEBUG_PROVIDER, "gdbstub"), debug_module(), - m_readbuf_state(PACKET_START), + m_readbuf_state(PACKET_START), m_machine(nullptr), m_maincpu(nullptr), m_state(nullptr), |