[Scummvm-cvs-logs] SF.net SVN: scummvm: [23585] scummvm/trunk/sound

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Sun Jul 23 18:13:54 CEST 2006


Revision: 23585
Author:   eriktorbjorn
Date:     2006-07-23 09:13:26 -0700 (Sun, 23 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23585&view=rev

Log Message:
-----------
Use #include "..." instead of #include <...> for pack-start.h and pack-end.h
for consistency with other #includes.

Modified Paths:
--------------
    scummvm/trunk/engines/gob/game.h
    scummvm/trunk/engines/gob/goblin.h
    scummvm/trunk/engines/gob/map.h
    scummvm/trunk/engines/gob/mult.h
    scummvm/trunk/engines/gob/scenery.h
    scummvm/trunk/engines/gob/video.h
    scummvm/trunk/engines/lure/res_struct.h
    scummvm/trunk/engines/queen/queen.h
    scummvm/trunk/engines/saga/gfx.h
    scummvm/trunk/engines/scumm/akos.cpp
    scummvm/trunk/engines/scumm/base-costume.h
    scummvm/trunk/engines/scumm/boxes.cpp
    scummvm/trunk/engines/scumm/file.cpp
    scummvm/trunk/engines/scumm/he/intern_he.h
    scummvm/trunk/engines/scumm/he/resource_he.h
    scummvm/trunk/engines/scumm/intern.h
    scummvm/trunk/engines/scumm/object.cpp
    scummvm/trunk/engines/scumm/object.h
    scummvm/trunk/engines/scumm/player_v2.h
    scummvm/trunk/engines/simon/vga.h
    scummvm/trunk/engines/sky/sound.cpp
    scummvm/trunk/engines/sky/struc.h
    scummvm/trunk/engines/sword1/mouse.h
    scummvm/trunk/engines/sword1/object.h
    scummvm/trunk/engines/sword1/router.h
    scummvm/trunk/engines/sword1/sworddefs.h
    scummvm/trunk/sound/voc.h
Modified: scummvm/trunk/engines/gob/game.h
===================================================================
--- scummvm/trunk/engines/gob/game.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/game.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -31,7 +31,7 @@
 class Game {
 public:
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Collision {
 		int16 id;
@@ -129,7 +129,7 @@
 		int32 vidBufferSize;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	TotResTable *_totResourceTable;
 	Collision *_collisionAreas;

Modified: scummvm/trunk/engines/gob/goblin.h
===================================================================
--- scummvm/trunk/engines/gob/goblin.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/goblin.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -38,7 +38,7 @@
 
 public:
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Gob_State {
 		int16 animation;// +0h
@@ -95,7 +95,7 @@
 		char y;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	Util::List *_objList;
 	Gob_Object *_goblins[4];

Modified: scummvm/trunk/engines/gob/map.h
===================================================================
--- scummvm/trunk/engines/gob/map.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/map.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -43,7 +43,7 @@
 		kDirSE = 0x5100
 	};
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Point {
 		int16 x;
@@ -59,7 +59,7 @@
 		int8 orient;		// ??
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	int16 _mapWidth;
 	int16 _mapHeight;

Modified: scummvm/trunk/engines/gob/mult.h
===================================================================
--- scummvm/trunk/engines/gob/mult.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/mult.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -32,7 +32,7 @@
 class Mult {
 public:
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Mult_AnimData {
 		int8 animation;
@@ -158,7 +158,7 @@
 		int16 field_E;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	// Globals
 
@@ -292,7 +292,7 @@
 class Mult_v2 : public Mult_v1 {
 public:
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Mult_Data {
 		int16 palFadeKeysCount;
@@ -344,7 +344,7 @@
 		char *execPtr;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	Mult_Data *_multData2; // TODO: This'll be _multData once every function using it
 	                       //       in GOB2 is done

Modified: scummvm/trunk/engines/gob/scenery.h
===================================================================
--- scummvm/trunk/engines/gob/scenery.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/scenery.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -28,7 +28,7 @@
 class Scenery {
 public:
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct PieceDesc {
 		int16 left;		//NOTE:
@@ -73,7 +73,7 @@
 		AnimFramePiece *frames;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	struct Static {
 		int16 layersCount;

Modified: scummvm/trunk/engines/gob/video.h
===================================================================
--- scummvm/trunk/engines/gob/video.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/gob/video.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -73,7 +73,7 @@
 #define DISABLE_SPR_ALLOC	0x20
 #define SCUMMVM_CURSOR		0x100
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 	struct Color {
 		byte red;
@@ -81,7 +81,7 @@
 		byte blue;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	struct PalDesc {
 		Color *vgaPal;

Modified: scummvm/trunk/engines/lure/res_struct.h
===================================================================
--- scummvm/trunk/engines/lure/res_struct.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/lure/res_struct.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -37,7 +37,7 @@
 /*                                                                         */
 /*-------------------------------------------------------------------------*/
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct VersionStructure {
 	uint16 id;
@@ -215,7 +215,7 @@
 	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

Modified: scummvm/trunk/engines/queen/queen.h
===================================================================
--- scummvm/trunk/engines/queen/queen.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/queen/queen.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -49,7 +49,7 @@
 
 namespace Queen {
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct GameStateHeader {
 	uint32 version;
@@ -58,7 +58,7 @@
 	char description[32];
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 class BamScene;
 class BankManager;

Modified: scummvm/trunk/engines/saga/gfx.h
===================================================================
--- scummvm/trunk/engines/saga/gfx.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/saga/gfx.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -78,7 +78,7 @@
 	}
 };
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct PalEntry {
 	byte red;
@@ -86,7 +86,7 @@
 	byte blue;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 struct Color {
 	int red;

Modified: scummvm/trunk/engines/scumm/akos.cpp
===================================================================
--- scummvm/trunk/engines/scumm/akos.cpp	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/akos.cpp	2006-07-23 16:13:26 UTC (rev 23585)
@@ -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 @@
 	uint16 akci;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 
 enum AkosOpcodes {

Modified: scummvm/trunk/engines/scumm/base-costume.h
===================================================================
--- scummvm/trunk/engines/scumm/base-costume.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/base-costume.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -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 @@
 	int16 move_x, move_y;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 
 

Modified: scummvm/trunk/engines/scumm/boxes.cpp
===================================================================
--- scummvm/trunk/engines/scumm/boxes.cpp	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/boxes.cpp	2006-07-23 16:13:26 UTC (rev 23585)
@@ -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 @@
 	};
 };
 
-#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

Modified: scummvm/trunk/engines/scumm/file.cpp
===================================================================
--- scummvm/trunk/engines/scumm/file.cpp	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/file.cpp	2006-07-23 16:13:26 UTC (rev 23585)
@@ -1241,7 +1241,7 @@
 	{ -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 @@
 	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) {

Modified: scummvm/trunk/engines/scumm/he/intern_he.h
===================================================================
--- scummvm/trunk/engines/scumm/he/intern_he.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/he/intern_he.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -226,7 +226,7 @@
 		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 @@
 		byte data[1];    //14
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	const OpcodeEntryV72he *_opcodesV72he;
 

Modified: scummvm/trunk/engines/scumm/he/resource_he.h
===================================================================
--- scummvm/trunk/engines/scumm/he/resource_he.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/he/resource_he.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -172,7 +172,7 @@
  * 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 @@
 		uint16 number_of_id_entries;
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 /*
  * Function Prototypes

Modified: scummvm/trunk/engines/scumm/intern.h
===================================================================
--- scummvm/trunk/engines/scumm/intern.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/intern.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -519,7 +519,7 @@
 		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 @@
 		byte data[1];
 	};
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 	const OpcodeEntryV6 *_opcodesV6;
 

Modified: scummvm/trunk/engines/scumm/object.cpp
===================================================================
--- scummvm/trunk/engines/scumm/object.cpp	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/object.cpp	2006-07-23 16:13:26 UTC (rev 23585)
@@ -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 @@
 	};
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 
 bool ScummEngine::getClass(int obj, int cls) const {

Modified: scummvm/trunk/engines/scumm/object.h
===================================================================
--- scummvm/trunk/engines/scumm/object.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/object.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -51,7 +51,7 @@
 	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 @@
 	};
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 struct FindObjectInRoom {
 	const CodeHeader *cdhd;

Modified: scummvm/trunk/engines/scumm/player_v2.h
===================================================================
--- scummvm/trunk/engines/scumm/player_v2.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/scumm/player_v2.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -37,7 +37,7 @@
 
 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 @@
 	uint16 music_script_nr;    // 48
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 
 /**

Modified: scummvm/trunk/engines/simon/vga.h
===================================================================
--- scummvm/trunk/engines/simon/vga.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/simon/vga.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -26,7 +26,7 @@
 
 namespace Simon {
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 // Feeble Files
 struct VgaFileHeader_Feeble {
@@ -92,7 +92,7 @@
 };
 
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 enum DrawFlags {
 	kDFFlip           = 0x1,

Modified: scummvm/trunk/engines/sky/sound.cpp
===================================================================
--- scummvm/trunk/engines/sky/sound.cpp	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sky/sound.cpp	2006-07-23 16:13:26 UTC (rev 23585)
@@ -37,7 +37,7 @@
 #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 @@
 	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

Modified: scummvm/trunk/engines/sky/struc.h
===================================================================
--- scummvm/trunk/engines/sky/struc.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sky/struc.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -36,7 +36,7 @@
 	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 @@
 	MegaSet megaSet3;	 //
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 } // End of namespace Sky
 

Modified: scummvm/trunk/engines/sword1/mouse.h
===================================================================
--- scummvm/trunk/engines/sword1/mouse.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sword1/mouse.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -48,7 +48,7 @@
 	Object *compact;
 };
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct MousePtr {
 	uint16 numFrames;
@@ -59,7 +59,7 @@
 	uint8  dummyData[0x30];
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 class Logic;
 class Menu;

Modified: scummvm/trunk/engines/sword1/object.h
===================================================================
--- scummvm/trunk/engines/sword1/object.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sword1/object.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -32,7 +32,7 @@
 #define	O_GRID_SIZE		200
 #define	EXTRA_GRID_SIZE	20
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct OEventSlot {			//receiving event list in the compact -
 	int32	o_event;		//array of these with O_TOTAL_EVENTS elements
@@ -118,7 +118,7 @@
 				// mega size = 12340 bytes (+ 8 byte offset table + 20 byte header = 12368)
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 } // End of namespace Sword1
 

Modified: scummvm/trunk/engines/sword1/router.h
===================================================================
--- scummvm/trunk/engines/sword1/router.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sword1/router.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -27,7 +27,7 @@
 
 namespace Sword1 {
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct BarData {
 	int16 x1;
@@ -51,7 +51,7 @@
 	int16 dist;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 struct FloorData {
 	int32		nbars;

Modified: scummvm/trunk/engines/sword1/sworddefs.h
===================================================================
--- scummvm/trunk/engines/sword1/sworddefs.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/engines/sword1/sworddefs.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -89,7 +89,7 @@
 #define	MAX_text_obs	2			//text compacts
 #define	TEXT_sect		149			//text compacts exist in section 149, probably after all the megas
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct Header {
 	char type[6];
@@ -132,7 +132,7 @@
 	int32 numNodes;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 enum fileTypes {
 	TYPE_CD1 = 0,

Modified: scummvm/trunk/sound/voc.h
===================================================================
--- scummvm/trunk/sound/voc.h	2006-07-23 15:32:14 UTC (rev 23584)
+++ scummvm/trunk/sound/voc.h	2006-07-23 16:13:26 UTC (rev 23585)
@@ -34,7 +34,7 @@
 class AudioStream;
 
 
-#include <common/pack-start.h>	// START STRUCT PACKING
+#include "common/pack-start.h"	// START STRUCT PACKING
 
 struct VocFileHeader {
 	uint8 desc[20];
@@ -50,7 +50,7 @@
 	uint8 pack;
 };
 
-#include <common/pack-end.h>	// END STRUCT PACKING
+#include "common/pack-end.h"	// END STRUCT PACKING
 
 /**
  * Take a sample rate parameter as it occurs in a VOC sound header, and


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list