diff options
Diffstat (limited to 'engines/sky')
-rw-r--r-- | engines/sky/sound.cpp | 4 | ||||
-rw-r--r-- | engines/sky/struc.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/sky/sound.cpp b/engines/sky/sound.cpp index ea21253c5f..d13f901511 100644 --- a/engines/sky/sound.cpp +++ b/engines/sky/sound.cpp @@ -37,7 +37,7 @@ namespace Sky { #define SFXF_START_DELAY 0x80 #define SFXF_SAVE 0x20 -#include <common/pack-start.h> // START STRUCT PACKING +#include "common/pack-start.h" // START STRUCT PACKING struct RoomList { uint8 room; @@ -51,7 +51,7 @@ struct Sfx { RoomList roomList[10]; }; -#include <common/pack-end.h> // END STRUCT PACKING +#include "common/pack-end.h" // END STRUCT PACKING uint16 Sound::_speechConvertTable[8] = { 0, //;Text numbers to file numbers diff --git a/engines/sky/struc.h b/engines/sky/struc.h index 5536991e05..ed451e0122 100644 --- a/engines/sky/struc.h +++ b/engines/sky/struc.h @@ -36,7 +36,7 @@ struct displayText_t { uint32 textWidth; }; -#include <common/pack-start.h> // START STRUCT PACKING +#include "common/pack-start.h" // START STRUCT PACKING struct dataFileHeader { uint16 flag; // bit 0: set for colour data, clear for not @@ -164,7 +164,7 @@ struct Compact { MegaSet megaSet3; // }; -#include <common/pack-end.h> // END STRUCT PACKING +#include "common/pack-end.h" // END STRUCT PACKING } // End of namespace Sky |