diff options
author | Jordi Vilalta Prat | 2009-02-15 08:34:13 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2009-02-15 08:34:13 +0000 |
commit | 003317e89d890944fc12e622190aa916aad6418c (patch) | |
tree | 321c42b2dd44c66cf1eaf7f71b19e3fc57944931 /engines/sci/sfx/softseq | |
parent | 1ef23afe6b0441393b6b43ee136552e887c80707 (diff) | |
download | scummvm-rg350-003317e89d890944fc12e622190aa916aad6418c.tar.gz scummvm-rg350-003317e89d890944fc12e622190aa916aad6418c.tar.bz2 scummvm-rg350-003317e89d890944fc12e622190aa916aad6418c.zip |
SCI: Get rid of the include directory hack (it compiles but it doesn't link yet)
svn-id: r38201
Diffstat (limited to 'engines/sci/sfx/softseq')
-rw-r--r-- | engines/sci/sfx/softseq/SN76496.c | 4 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/amiga.c | 6 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/fmopl.h | 2 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/pcspeaker.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/engines/sci/sfx/softseq/SN76496.c b/engines/sci/sfx/softseq/SN76496.c index cb32b89f0c..6ecd72bf9e 100644 --- a/engines/sci/sfx/softseq/SN76496.c +++ b/engines/sci/sfx/softseq/SN76496.c @@ -28,8 +28,8 @@ ***************************************************************************/ /* Tandy/PCJr sequencer for FreeSCI */ -#include "../softseq.h" -#include <sci_midi.h> +#include "sci/sfx/softseq.h" +#include "sci/include/sci_midi.h" #define FREQUENCY 44100 #define CHANNELS_NR 3 diff --git a/engines/sci/sfx/softseq/amiga.c b/engines/sci/sfx/softseq/amiga.c index 12240897d7..8595899718 100644 --- a/engines/sci/sfx/softseq/amiga.c +++ b/engines/sci/sfx/softseq/amiga.c @@ -27,9 +27,9 @@ ***************************************************************************/ -#include "resource.h" -#include "sci_memory.h" -#include "../softseq.h" +#include "sci/include/resource.h" +#include "sci/include/sci_memory.h" +#include "sci/sfx/softseq.h" #define FREQUENCY 44100 #define CHANNELS_NR 10 diff --git a/engines/sci/sfx/softseq/fmopl.h b/engines/sci/sfx/softseq/fmopl.h index 5bb1cd80d7..0250c23a5a 100644 --- a/engines/sci/sfx/softseq/fmopl.h +++ b/engines/sci/sfx/softseq/fmopl.h @@ -26,7 +26,7 @@ #ifndef FMOPL_H_ #define FMOPL_H_ -#include <scitypes.h> +#include "sci/include/scitypes.h" #define TWELVE_VOICE 1 #ifdef TWELVE_VOICE diff --git a/engines/sci/sfx/softseq/pcspeaker.c b/engines/sci/sfx/softseq/pcspeaker.c index 771c8f0da5..727b1f9e5a 100644 --- a/engines/sci/sfx/softseq/pcspeaker.c +++ b/engines/sci/sfx/softseq/pcspeaker.c @@ -28,8 +28,8 @@ ***************************************************************************/ /* PC speaker software sequencer for FreeSCI */ -#include "../softseq.h" -#include <sci_midi.h> +#include "sci/sfx/softseq.h" +#include "sci/include/sci_midi.h" #define FREQUENCY 94020 |