diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sfx/seq/gm.cpp | 2 | ||||
-rw-r--r-- | engines/sci/sfx/seq/instrument-map.h | 2 | ||||
-rw-r--r-- | engines/sci/sfx/seq/midiwriter.h (renamed from engines/sci/sfx/device.h) | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/sfx/seq/gm.cpp b/engines/sci/sfx/seq/gm.cpp index 5f74b60321..9e2a61db47 100644 --- a/engines/sci/sfx/seq/gm.cpp +++ b/engines/sci/sfx/seq/gm.cpp @@ -25,7 +25,7 @@ #include "common/util.h" -#include "sci/sfx/device.h" +#include "sci/sfx/seq/midiwriter.h" #include "sci/sfx/seq/instrument-map.h" namespace Sci { diff --git a/engines/sci/sfx/seq/instrument-map.h b/engines/sci/sfx/seq/instrument-map.h index 1e8a63076b..e0c52ca735 100644 --- a/engines/sci/sfx/seq/instrument-map.h +++ b/engines/sci/sfx/seq/instrument-map.h @@ -28,7 +28,7 @@ #ifndef SCI_SFX_SEQ_INSTRUMENT_MAP_H #define SCI_SFX_SEQ_INSTRUMENT_MAP_H -#include "sci/sfx/device.h" +#include "sci/sfx/seq/midiwriter.h" namespace Sci { diff --git a/engines/sci/sfx/device.h b/engines/sci/sfx/seq/midiwriter.h index ed4441b11f..24e432ffc4 100644 --- a/engines/sci/sfx/device.h +++ b/engines/sci/sfx/seq/midiwriter.h @@ -25,8 +25,8 @@ /* song player structure */ -#ifndef SCI_SFX_DEVICE_H -#define SCI_SFX_DEVICE_H +#ifndef SCI_SFX_SEQ_MIDIWRITER_H +#define SCI_SFX_SEQ_MIDIWRITER_H #include "common/scummsys.h" #include "common/error.h" @@ -85,4 +85,4 @@ struct midi_writer_t { } // End of namespace Sci -#endif // SCI_SFX_DEVICE_H +#endif // SCI_SFX_SEQ_MIDIWRITER_H |