diff options
author | 2017-02-11 18:23:11 +0100 | |
---|---|---|
committer | 2017-02-11 18:31:20 +0100 | |
commit | a2557f1b02478c5aaa1fdfa00204ac2e219319a1 (patch) | |
tree | 6f1693d59aa53be8c76ffe3bcf7fbc72f8546453 /src/devices/bus/sg1000_exp | |
parent | c49b631153be9efc3a7e7b6172c17f5418843c0b (diff) |
Remove emu.h from headers (nw)
Per Vas' request. If the compile fails for you (i'm thinking osx and
windows native debuggers here in particular), add '#include "emu.h"'
as first include of the cpp files that fail.
Due to our use of precompilation and forced inclusion, emu.h must be
included as the very first non-comment thing we do if we want to be
sure msvc compiles are identical to gcc/clang ones. Doing it directly
instead of through an include increases the correctness probability by
a magnitude.
Diffstat (limited to 'src/devices/bus/sg1000_exp')
-rw-r--r-- | src/devices/bus/sg1000_exp/fm_unit.cpp | 1 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/fm_unit.h | 1 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sg1000exp.cpp | 1 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sg1000exp.h | 1 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sk1100.cpp | 1 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sk1100.h | 1 |
6 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/sg1000_exp/fm_unit.cpp b/src/devices/bus/sg1000_exp/fm_unit.cpp index 1b2bc0e5674..ceca6077fe8 100644 --- a/src/devices/bus/sg1000_exp/fm_unit.cpp +++ b/src/devices/bus/sg1000_exp/fm_unit.cpp @@ -38,6 +38,7 @@ SMS version is not playing PSG sound on his Mark III with the FM unit. **********************************************************************/ +#include "emu.h" #include "fm_unit.h" diff --git a/src/devices/bus/sg1000_exp/fm_unit.h b/src/devices/bus/sg1000_exp/fm_unit.h index f5dcde16e1f..17dadf0d142 100644 --- a/src/devices/bus/sg1000_exp/fm_unit.h +++ b/src/devices/bus/sg1000_exp/fm_unit.h @@ -12,7 +12,6 @@ #define __SEGA_FM_UNIT__ -#include "emu.h" #include "sound/ym2413.h" #include "sound/sn76496.h" #include "sg1000exp.h" diff --git a/src/devices/bus/sg1000_exp/sg1000exp.cpp b/src/devices/bus/sg1000_exp/sg1000exp.cpp index 9560905de41..7c1fa1eea32 100644 --- a/src/devices/bus/sg1000_exp/sg1000exp.cpp +++ b/src/devices/bus/sg1000_exp/sg1000exp.cpp @@ -6,6 +6,7 @@ **********************************************************************/ +#include "emu.h" #include "sg1000exp.h" // slot devices #include "sk1100.h" diff --git a/src/devices/bus/sg1000_exp/sg1000exp.h b/src/devices/bus/sg1000_exp/sg1000exp.h index 12cecb1bc89..328f12e269c 100644 --- a/src/devices/bus/sg1000_exp/sg1000exp.h +++ b/src/devices/bus/sg1000_exp/sg1000exp.h @@ -14,7 +14,6 @@ #ifndef __SG1000_EXPANSION_SLOT__ #define __SG1000_EXPANSION_SLOT__ -#include "emu.h" diff --git a/src/devices/bus/sg1000_exp/sk1100.cpp b/src/devices/bus/sg1000_exp/sk1100.cpp index 275a73b67b8..b58757cbbc4 100644 --- a/src/devices/bus/sg1000_exp/sk1100.cpp +++ b/src/devices/bus/sg1000_exp/sk1100.cpp @@ -17,6 +17,7 @@ TODO: **********************************************************************/ +#include "emu.h" #include "sk1100.h" #include "softlist.h" diff --git a/src/devices/bus/sg1000_exp/sk1100.h b/src/devices/bus/sg1000_exp/sk1100.h index 592ee0dd5b5..29aa91c3074 100644 --- a/src/devices/bus/sg1000_exp/sk1100.h +++ b/src/devices/bus/sg1000_exp/sk1100.h @@ -12,7 +12,6 @@ #define __SEGA_SK1100__ -#include "emu.h" #include "sg1000exp.h" #include "formats/sc3000_bit.h" #include "imagedev/cassette.h" |