From 96c9112785e158a267443831fe9f3fa857d60b14 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 23 May 2017 14:58:36 +1000 Subject: general cleanup: * move rarely-used output and pty interfaces out of emu.h * consolidate and de-duplicate forward declarations, also remove some obsolete ones * clean up more #include guard macros * scope down a few more things (nw) Everyone, please keep forward declarations for src/emu in src/emu/emufwd.h - this will make it far easier to keep them in sync with declarations than having them scattered through all the other files. --- src/emu/debug/debugcpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emu/debug/debugcpu.cpp') diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp index 3fb5c2421ae..143159936bf 100644 --- a/src/emu/debug/debugcpu.cpp +++ b/src/emu/debug/debugcpu.cpp @@ -202,7 +202,7 @@ void debugger_cpu::source_script(const char *file) m_source_file = fopen(file, "r"); if (!m_source_file) { - if (m_machine.phase() == MACHINE_PHASE_RUNNING) + if (m_machine.phase() == machine_phase::RUNNING) m_machine.debugger().console().printf("Cannot open command file '%s'\n", file); else fatalerror("Cannot open command file '%s'\n", file); -- cgit v1.2.3