aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/akos.cpp4
-rw-r--r--engines/scumm/base-costume.h4
-rw-r--r--engines/scumm/boxes.cpp4
-rw-r--r--engines/scumm/file.cpp4
-rw-r--r--engines/scumm/he/intern_he.h4
-rw-r--r--engines/scumm/he/resource_he.h4
-rw-r--r--engines/scumm/intern.h4
-rw-r--r--engines/scumm/object.cpp4
-rw-r--r--engines/scumm/object.h4
-rw-r--r--engines/scumm/player_v2.h4
10 files changed, 20 insertions, 20 deletions
diff --git a/engines/scumm/akos.cpp b/engines/scumm/akos.cpp
index 139c18be37..1e6edb9bdd 100644
--- a/engines/scumm/akos.cpp
+++ b/engines/scumm/akos.cpp
@@ -36,7 +36,7 @@
namespace Scumm {
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct AkosHeader {
byte unk_1[2];
@@ -52,7 +52,7 @@ struct AkosOffset {
uint16 akci;
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
enum AkosOpcodes {
diff --git a/engines/scumm/base-costume.h b/engines/scumm/base-costume.h
index b4e875a4a8..3e8d84a9ee 100644
--- a/engines/scumm/base-costume.h
+++ b/engines/scumm/base-costume.h
@@ -29,7 +29,7 @@
namespace Scumm {
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct CostumeInfo {
uint16 width, height;
@@ -37,7 +37,7 @@ struct CostumeInfo {
int16 move_x, move_y;
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
diff --git a/engines/scumm/boxes.cpp b/engines/scumm/boxes.cpp
index a066b448de..24cb3659c4 100644
--- a/engines/scumm/boxes.cpp
+++ b/engines/scumm/boxes.cpp
@@ -31,7 +31,7 @@
namespace Scumm {
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct Box { /* Internal walkbox file format */
union {
@@ -79,7 +79,7 @@ struct Box { /* Internal walkbox file format */
};
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
#define BOX_MATRIX_SIZE 2000
#define BOX_DEBUG 0
diff --git a/engines/scumm/file.cpp b/engines/scumm/file.cpp
index b08ec0e41f..d1e77d645c 100644
--- a/engines/scumm/file.cpp
+++ b/engines/scumm/file.cpp
@@ -1241,7 +1241,7 @@ static ScummNESFile::LFL lfls[] = {
{ -1, NULL }
};
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct _lfl_index {
byte room_lfl[55];
@@ -1254,7 +1254,7 @@ struct _lfl_index {
uint16 sound_addr[100];
} lfl_index;
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
bool ScummNESFile::generateResource(int res) {
diff --git a/engines/scumm/he/intern_he.h b/engines/scumm/he/intern_he.h
index 250dbaad5a..dca0c7d19a 100644
--- a/engines/scumm/he/intern_he.h
+++ b/engines/scumm/he/intern_he.h
@@ -226,7 +226,7 @@ protected:
const char *desc;
};
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct ArrayHeader {
int32 type; //0
@@ -237,7 +237,7 @@ protected:
byte data[1]; //14
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
const OpcodeEntryV72he *_opcodesV72he;
diff --git a/engines/scumm/he/resource_he.h b/engines/scumm/he/resource_he.h
index 468812a236..634d5d9494 100644
--- a/engines/scumm/he/resource_he.h
+++ b/engines/scumm/he/resource_he.h
@@ -172,7 +172,7 @@ class Win32ResExtractor : public ResExtractor {
* Structures
*/
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct WinLibrary {
Common::File *file;
@@ -454,7 +454,7 @@ class Win32ResExtractor : public ResExtractor {
uint16 number_of_id_entries;
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
/*
* Function Prototypes
diff --git a/engines/scumm/intern.h b/engines/scumm/intern.h
index 2ccce37b36..0f59212beb 100644
--- a/engines/scumm/intern.h
+++ b/engines/scumm/intern.h
@@ -519,7 +519,7 @@ protected:
kDwordArray = 6
};
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct ArrayHeader {
int16 dim1;
@@ -528,7 +528,7 @@ protected:
byte data[1];
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
const OpcodeEntryV6 *_opcodesV6;
diff --git a/engines/scumm/object.cpp b/engines/scumm/object.cpp
index 6ba1d60a60..731e7b3286 100644
--- a/engines/scumm/object.cpp
+++ b/engines/scumm/object.cpp
@@ -36,7 +36,7 @@
namespace Scumm {
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct BompHeader { /* Bomp header */
union {
@@ -51,7 +51,7 @@ struct BompHeader { /* Bomp header */
};
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
bool ScummEngine::getClass(int obj, int cls) const {
diff --git a/engines/scumm/object.h b/engines/scumm/object.h
index 016aea1803..d5d447dde4 100644
--- a/engines/scumm/object.h
+++ b/engines/scumm/object.h
@@ -51,7 +51,7 @@ struct ObjectData {
byte flags;
};
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct RoomHeader {
union {
@@ -157,7 +157,7 @@ struct ImageHeader { /* file format */
};
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
struct FindObjectInRoom {
const CodeHeader *cdhd;
diff --git a/engines/scumm/player_v2.h b/engines/scumm/player_v2.h
index 066da8acde..c1a15f542e 100644
--- a/engines/scumm/player_v2.h
+++ b/engines/scumm/player_v2.h
@@ -37,7 +37,7 @@ namespace Scumm {
class ScummEngine;
-#include <common/pack-start.h> // START STRUCT PACKING
+#include "common/pack-start.h" // START STRUCT PACKING
struct channel_data {
uint16 time_left; // 00
@@ -64,7 +64,7 @@ struct channel_data {
uint16 music_script_nr; // 48
};
-#include <common/pack-end.h> // END STRUCT PACKING
+#include "common/pack-end.h" // END STRUCT PACKING
/**