diff options
author | Max Horn | 2009-02-21 22:06:42 +0000 |
---|---|---|
committer | Max Horn | 2009-02-21 22:06:42 +0000 |
commit | 8430b662a99d96100fbeb3428a61595444fc3526 (patch) | |
tree | 2c0421af6635c6496905d6fb95c8e9de2a0487c4 /engines/sci/sfx/seq/gm.cpp | |
parent | da190b30fcf79edb14b58e560b243f797fb17820 (diff) | |
download | scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.gz scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.bz2 scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.zip |
SCI: Changed typedef struct -> struct
svn-id: r38752
Diffstat (limited to 'engines/sci/sfx/seq/gm.cpp')
-rw-r--r-- | engines/sci/sfx/seq/gm.cpp | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/engines/sci/sfx/seq/gm.cpp b/engines/sci/sfx/seq/gm.cpp index 896c521007..ebd0b47bf6 100644 --- a/engines/sci/sfx/seq/gm.cpp +++ b/engines/sci/sfx/seq/gm.cpp @@ -23,17 +23,10 @@ * */ -#include <stdlib.h> -#include <string.h> -#include <assert.h> -#include <stdio.h> -#ifdef HAVE_UNISTD_H -# include <unistd.h> -#endif -#include "../sequencer.h" -#include "../device.h" -#include "instrument-map.h" -#include <resource.h> +#include "sci/tools.h" +#include "sci/sfx/sequencer.h" +#include "sci/sfx/device.h" +#include "sci/sfx/seq/instrument-map.h" namespace Sci { |