diff options
author | Torbjörn Andersson | 2006-07-23 16:13:26 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-07-23 16:13:26 +0000 |
commit | c32076e5d0679cefa2fdb2d191e7caf37f79ffdf (patch) | |
tree | ffc72722922a373ba9f5192c8f2165736e40d1a3 /engines/lure | |
parent | eabe720a0e79d902d862995816abf9550fc6295f (diff) | |
download | scummvm-rg350-c32076e5d0679cefa2fdb2d191e7caf37f79ffdf.tar.gz scummvm-rg350-c32076e5d0679cefa2fdb2d191e7caf37f79ffdf.tar.bz2 scummvm-rg350-c32076e5d0679cefa2fdb2d191e7caf37f79ffdf.zip |
Use #include "..." instead of #include <...> for pack-start.h and pack-end.h
for consistency with other #includes.
svn-id: r23585
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/res_struct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/res_struct.h b/engines/lure/res_struct.h index d95fec8d7f..eab2a7817e 100644 --- a/engines/lure/res_struct.h +++ b/engines/lure/res_struct.h @@ -37,7 +37,7 @@ extern const char *actionList[]; /* */ /*-------------------------------------------------------------------------*/ -#include <common/pack-start.h> // START STRUCT PACKING +#include "common/pack-start.h" // START STRUCT PACKING struct VersionStructure { uint16 id; @@ -215,7 +215,7 @@ struct RoomExitIndexedHotspotResource { uint16 hotspotId; }; -#include <common/pack-end.h> // END STRUCT PACKING +#include "common/pack-end.h" // END STRUCT PACKING // Class template for a derived list that destroys the contained // object when the record containing it is destroyed. It's not |