[Scummvm-cvs-logs] CVS: scummvm/sky/compacts 0compact.h,1.3,1.4 101comp.h,1.3,1.4 102comp.h,1.3,1.4 10comp.h,1.3,1.4 11comp.h,1.3,1.4 12comp.h,1.3,1.4 13comp.h,1.3,1.4 14comp.h,1.3,1.4 15comp.h,1.3,1.4 16comp.h,1.3,1.4 17comp.h,1.3,1.4 18comp.h,1.3,1.4 19comp.h,1.3,1.4 1compact.h,1.3,1.4 20comp.h,1.3,1.4 21comp.h,1.3,1.4 22comp.h,1.3,1.4 23comp.h,1.3,1.4 24comp.h,1.3,1.4 25comp.h,1.3,1.4 26comp.h,1.3,1.4 27comp.h,1.3,1.4 28comp.h,1.3,1.4 29comp.h,1.3,1.4 2compact.h,1.3,1.4 30comp.h,1.3,1.4 31comp.h,1.3,1.4 32comp.h,1.3,1.4 33comp.h,1.3,1.4 34comp.h,1.3,1.4 36comp.h,1.3,1.4 37comp.h,1.3,1.4 38comp.h,1.3,1.4 39comp.h,1.3,1.4 3compact.h,1.3,1.4 40comp.h,1.3,1.4 41comp.h,1.3,1.4 42comp.h,1.3,1.4 44comp.h,1.3,1.4 45comp.h,1.3,1.4 46comp.h,1.3,1.4 47comp.h,1.3,1.4 48comp.h,1.3,1.4 4compact.h,1.3,1.4 5compact.h,1.3,1.4 65comp.h,1.3,1.4 66comp.h,1.3,1.4 67comp.h,1.3,1.4 68comp.h,1.3,1.4 69comp.h,1.3,1.4 70comp.h,1.3,1.4 71comp.h,1.3,1.4 72comp.h,1.3,1.4 73comp.h,1.3,1.4 74comp.h,1.3,1.4 75comp.h,1.3,1.4 76comp.h,1.3,1.4 77comp.h,1.3,1.4 78comp.h,1.3,1.4 79comp.h,1.3,1.4 80comp.h,1.3,1.4 81comp.h,1.3,1.4 82comp.h,1.3,1.4 85comp.h,1.3,1.4 90comp.h,1.3,1.4 91comp.h,1.3,1.4 92comp.h,1.3,1.4 93comp.h,1.3,1.4 94comp.h,1.3,1.4 95comp.h,1.3,1.4 96comp.h,1.3,1.4 9compact.h,1.3,1.4 linc_gen.h,1.3,1.4 lincmenu.h,1.3,1.4 objects.h,1.3,1.4 z_compac.h,1.3,1.4

Oliver Kiehl olki at users.sourceforge.net
Tue Apr 29 15:31:10 CEST 2003


Update of /cvsroot/scummvm/scummvm/sky/compacts
In directory sc8-pr-cvs1:/tmp/cvs-serv5590

Modified Files:
	0compact.h 101comp.h 102comp.h 10comp.h 11comp.h 12comp.h 
	13comp.h 14comp.h 15comp.h 16comp.h 17comp.h 18comp.h 19comp.h 
	1compact.h 20comp.h 21comp.h 22comp.h 23comp.h 24comp.h 
	25comp.h 26comp.h 27comp.h 28comp.h 29comp.h 2compact.h 
	30comp.h 31comp.h 32comp.h 33comp.h 34comp.h 36comp.h 37comp.h 
	38comp.h 39comp.h 3compact.h 40comp.h 41comp.h 42comp.h 
	44comp.h 45comp.h 46comp.h 47comp.h 48comp.h 4compact.h 
	5compact.h 65comp.h 66comp.h 67comp.h 68comp.h 69comp.h 
	70comp.h 71comp.h 72comp.h 73comp.h 74comp.h 75comp.h 76comp.h 
	77comp.h 78comp.h 79comp.h 80comp.h 81comp.h 82comp.h 85comp.h 
	90comp.h 91comp.h 92comp.h 93comp.h 94comp.h 95comp.h 96comp.h 
	9compact.h linc_gen.h lincmenu.h objects.h z_compac.h 
Log Message:
small restructure (I hope the last one, but at least it pushes us up in the
list of SF's most active projects ;) )


Index: 0compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/0compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 0compact.h	27 Apr 2003 21:40:15 -0000	1.3
+++ 0compact.h	29 Apr 2003 22:29:08 -0000	1.4
@@ -4066,7 +4066,7 @@
 	0,
 };
 
-uint16 *mini_so_turnTable0[5][5] = {
+TurnTable mini_so_turnTable0 = {
 	{ // turnTableUp
 		0,
 		m_ss_u_to_d,
@@ -4118,7 +4118,7 @@
 	m_ss_st_left,	// standLeft
 	m_ss_st_right,	// standRight
 	m_ss_st_talk,	// standTalk
-	mini_so_turnTable0,
+	&mini_so_turnTable0,
 };
 
 ExtCompact mini_so_ext = {
@@ -4590,7 +4590,7 @@
 	0,
 };
 
-uint16 *full_so_turnTable0[5][5] = {
+TurnTable full_so_turnTable0 = {
 	{ // turnTableUp
 		0,
 		f_ss_u_to_d,
@@ -4642,7 +4642,7 @@
 	f_ss_st_left,	// standLeft
 	f_ss_st_right,	// standRight
 	0,	// standTalk
-	full_so_turnTable0,
+	&full_so_turnTable0,
 };
 
 ExtCompact full_so_ext = {

Index: 101comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/101comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 102comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/102comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 10comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/10comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 11comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/11comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 12comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/12comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 13comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/13comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 13comp.h	27 Apr 2003 21:40:15 -0000	1.3
+++ 13comp.h	29 Apr 2003 22:29:12 -0000	1.4
@@ -2367,7 +2367,7 @@
 	0,
 };
 
-uint16 *foreman_turnTable0[5][5] = {
+TurnTable foreman_turnTable0 = {
 	{ // turnTableUp
 		0,
 		foreman_u_to_d,
@@ -2419,7 +2419,7 @@
 	foreman_st_left,	// standLeft
 	foreman_st_right,	// standRight
 	foreman_st_talk,	// standTalk
-	foreman_turnTable0,
+	&foreman_turnTable0,
 };
 
 ExtCompact foreman_ext = {

Index: 14comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/14comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 14comp.h	27 Apr 2003 21:40:15 -0000	1.3
+++ 14comp.h	29 Apr 2003 22:29:13 -0000	1.4
@@ -337,7 +337,7 @@
 	0,
 };
 
-uint16 *radman_turnTable0[5][5] = {
+TurnTable radman_turnTable0 = {
 	{ // turnTableUp
 		0,
 		radman_u_to_d,
@@ -389,7 +389,7 @@
 	radman_st_left,	// standLeft
 	radman_st_right,	// standRight
 	radman_st_talk,	// standTalk
-	radman_turnTable0,
+	&radman_turnTable0,
 };
 
 ExtCompact radman_ext = {

Index: 15comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/15comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 16comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/16comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 17comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/17comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 18comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/18comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 19comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/19comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 1compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/1compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 20comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/20comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 21comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/21comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 22comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/22comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 23comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/23comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 24comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/24comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 25comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/25comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 26comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/26comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 27comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/27comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 27comp.h	27 Apr 2003 21:40:15 -0000	1.3
+++ 27comp.h	29 Apr 2003 22:29:17 -0000	1.4
@@ -2039,7 +2039,7 @@
 	0,
 };
 
-uint16 *burke_turnTable0[5][5] = {
+TurnTable burke_turnTable0 = {
 	{ // turnTableUp
 		0,
 		burke_u_to_d,
@@ -2091,7 +2091,7 @@
 	burke_st_left,	// standLeft
 	burke_st_right,	// standRight
 	burke_st_talk,	// standTalk
-	burke_turnTable0,
+	&burke_turnTable0,
 };
 
 ExtCompact burke_ext = {

Index: 28comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/28comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 29comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/29comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 2compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/2compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 2compact.h	27 Apr 2003 21:40:15 -0000	1.3
+++ 2compact.h	29 Apr 2003 22:29:18 -0000	1.4
@@ -1259,7 +1259,7 @@
 	0,
 };
 
-uint16 *loader_turnTable0[5][5] = {
+TurnTable loader_turnTable0 = {
 	{ // turnTableUp
 		0,
 		loader_u_to_d,
@@ -1297,7 +1297,7 @@
 	},
 };
 
-uint16 *loader_turnTable1[5][5] = {
+TurnTable loader_turnTable1 = {
 	{ // turnTableUp
 		0,
 		loaderb_u_to_d,
@@ -1335,7 +1335,7 @@
 	},
 };
 
-uint16 *loader_turnTable2[5][5] = {
+TurnTable loader_turnTable2 = {
 	{ // turnTableUp
 		0,
 		sml_loader_u_to_d,
@@ -1373,7 +1373,7 @@
 	},
 };
 
-uint16 *loader_turnTable3[5][5] = {
+TurnTable loader_turnTable3 = {
 	{ // turnTableUp
 		0,
 		sml_loaderb_u_to_d,
@@ -1425,7 +1425,7 @@
 	loader_st_left,	// standLeft
 	loader_st_right,	// standRight
 	0,	// standTalk
-	loader_turnTable0,
+	&loader_turnTable0,
 };
 
 MegaSet loader_megaSet1 = {
@@ -1442,7 +1442,7 @@
 	loaderb_st_left,	// standLeft
 	loaderb_st_right,	// standRight
 	0,	// standTalk
-	loader_turnTable1,
+	&loader_turnTable1,
 };
 
 MegaSet loader_megaSet2 = {
@@ -1459,7 +1459,7 @@
 	sml_loader_st_left,	// standLeft
 	sml_loader_st_right,	// standRight
 	0,	// standTalk
-	loader_turnTable2,
+	&loader_turnTable2,
 };
 
 MegaSet loader_megaSet3 = {
@@ -1476,7 +1476,7 @@
 	sml_loaderb_st_left,	// standLeft
 	sml_loaderb_st_right,	// standRight
 	0,	// standTalk
-	loader_turnTable3,
+	&loader_turnTable3,
 };
 
 ExtCompact loader_ext = {

Index: 30comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/30comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 31comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/31comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 32comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/32comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 33comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/33comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 34comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/34comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 36comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/36comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 36comp.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 36comp.h	29 Apr 2003 22:29:19 -0000	1.4
@@ -1274,7 +1274,7 @@
 	0,
 };
 
-uint16 *sc36_babs_turnTable0[5][5] = {
+TurnTable sc36_babs_turnTable0 = {
 	{ // turnTableUp
 		0,
 		babs_u_to_d,
@@ -1326,7 +1326,7 @@
 	babs_st_left,	// standLeft
 	babs_st_right,	// standRight
 	babs_st_talk,	// standTalk
-	sc36_babs_turnTable0,
+	&sc36_babs_turnTable0,
 };
 
 ExtCompact sc36_babs_ext = {

Index: 37comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/37comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 38comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/38comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 38comp.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 38comp.h	29 Apr 2003 22:29:20 -0000	1.4
@@ -3172,7 +3172,7 @@
 	0,
 };
 
-uint16 *danielle_turnTable0[5][5] = {
+TurnTable danielle_turnTable0 = {
 	{ // turnTableUp
 		0,
 		dan_u_to_d,
@@ -3210,7 +3210,7 @@
 	},
 };
 
-uint16 *danielle_turnTable1[5][5] = {
+TurnTable danielle_turnTable1 = {
 	{ // turnTableUp
 		0,
 		sex_u_to_d,
@@ -3262,7 +3262,7 @@
 	dan_st_left,	// standLeft
 	dan_st_right,	// standRight
 	dan_st_talk,	// standTalk
-	danielle_turnTable0,
+	&danielle_turnTable0,
 };
 
 MegaSet danielle_megaSet1 = {
@@ -3279,7 +3279,7 @@
 	sex_st_left,	// standLeft
 	sex_st_right,	// standRight
 	sex_st_talk,	// standTalk
-	danielle_turnTable1,
+	&danielle_turnTable1,
 };
 
 ExtCompact danielle_ext = {
@@ -3393,7 +3393,7 @@
 	0,
 };
 
-uint16 *spunky_turnTable0[5][5] = {
+TurnTable spunky_turnTable0 = {
 	{ // turnTableUp
 		0,
 		spu_u_to_d,
@@ -3445,7 +3445,7 @@
 	spu_st_left,	// standLeft
 	spu_st_right,	// standRight
 	spu_st_talk,	// standTalk
-	spunky_turnTable0,
+	&spunky_turnTable0,
 };
 
 ExtCompact spunky_ext = {

Index: 39comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/39comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 3compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/3compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 3compact.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 3compact.h	29 Apr 2003 22:29:20 -0000	1.4
@@ -1189,7 +1189,7 @@
 	0,
 };
 
-uint16 *shades_turnTable0[5][5] = {
+TurnTable shades_turnTable0 = {
 	{ // turnTableUp
 		0,
 		shades_u_to_d,
@@ -1241,7 +1241,7 @@
 	shades_st_left,	// standLeft
 	shades_st_right,	// standRight
 	shades_st_talk,	// standTalk
-	shades_turnTable0,
+	&shades_turnTable0,
 };
 
 ExtCompact shades_ext = {

Index: 40comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/40comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 41comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/41comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 42comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/42comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 44comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/44comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 45comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/45comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 46comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/46comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 47comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/47comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 48comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/48comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 4compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/4compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 5compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/5compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 65comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/65comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 66comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/66comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 67comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/67comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 68comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/68comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 69comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/69comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 70comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/70comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 71comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/71comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 71comp.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 71comp.h	29 Apr 2003 22:29:24 -0000	1.4
@@ -394,7 +394,7 @@
 	0,
 };
 
-uint16 *medi_turnTable0[5][5] = {
+TurnTable medi_turnTable0 = {
 	{ // turnTableUp
 		0,
 		medi_u_to_d,
@@ -446,7 +446,7 @@
 	medi_st_left,	// standLeft
 	medi_st_right,	// standRight
 	0,	// standTalk
-	medi_turnTable0,
+	&medi_turnTable0,
 };
 
 ExtCompact medi_ext = {

Index: 72comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/72comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 72comp.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 72comp.h	29 Apr 2003 22:29:24 -0000	1.4
@@ -2107,7 +2107,7 @@
 	0,
 };
 
-uint16 *witness_turnTable0[5][5] = {
+TurnTable witness_turnTable0 = {
 	{ // turnTableUp
 		0,
 		wit_u_to_d,
@@ -2159,7 +2159,7 @@
 	wit_st_left,	// standLeft
 	wit_st_right,	// standRight
 	wit_st_talk,	// standTalk
-	witness_turnTable0,
+	&witness_turnTable0,
 };
 
 ExtCompact witness_ext = {

Index: 73comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/73comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 73comp.h	27 Apr 2003 21:40:16 -0000	1.3
+++ 73comp.h	29 Apr 2003 22:29:24 -0000	1.4
@@ -406,7 +406,7 @@
 	0,
 };
 
-uint16 *gallagher_turnTable0[5][5] = {
+TurnTable gallagher_turnTable0 = {
 	{ // turnTableUp
 		0,
 		gal_u_to_d,
@@ -458,7 +458,7 @@
 	gal_st_left,	// standLeft
 	gal_st_right,	// standRight
 	0,	// standTalk
-	gallagher_turnTable0,
+	&gallagher_turnTable0,
 };
 
 ExtCompact gallagher_ext = {

Index: 74comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/74comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 75comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/75comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 76comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/76comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- 76comp.h	27 Apr 2003 21:40:17 -0000	1.3
+++ 76comp.h	29 Apr 2003 22:29:25 -0000	1.4
@@ -471,7 +471,7 @@
 	0,
 };
 
-uint16 *ken_turnTable0[5][5] = {
+TurnTable ken_turnTable0 = {
 	{ // turnTableUp
 		0,
 		ken_u_to_d,
@@ -523,7 +523,7 @@
 	ken_st_left,	// standLeft
 	ken_st_right,	// standRight
 	0,	// standTalk
-	ken_turnTable0,
+	&ken_turnTable0,
 };
 
 ExtCompact ken_ext = {

Index: 77comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/77comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 78comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/78comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 79comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/79comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 80comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/80comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 81comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/81comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 82comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/82comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 85comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/85comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 90comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/90comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 91comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/91comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 92comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/92comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 93comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/93comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 94comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/94comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 95comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/95comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 96comp.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/96comp.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: 9compact.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/9compact.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: linc_gen.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/linc_gen.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: lincmenu.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/lincmenu.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: objects.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/objects.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4

Index: z_compac.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/compacts/z_compac.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- z_compac.h	27 Apr 2003 21:40:17 -0000	1.3
+++ z_compac.h	29 Apr 2003 22:29:26 -0000	1.4
@@ -1039,7 +1039,7 @@
 	0,
 };
 
-uint16 *lamb_turnTable0[5][5] = {
+TurnTable lamb_turnTable0 = {
 	{ // turnTableUp
 		0,
 		lamb_u_to_d,
@@ -1091,7 +1091,7 @@
 	lamb_st_left,	// standLeft
 	lamb_st_right,	// standRight
 	lamb_st_talk,	// standTalk
-	lamb_turnTable0,
+	&lamb_turnTable0,
 };
 
 ExtCompact lamb_ext = {
@@ -3063,7 +3063,7 @@
 	0,
 };
 
-uint16 *joey_turnTable0[5][5] = {
+TurnTable joey_turnTable0 = {
 	{ // turnTableUp
 		0,
 		ljoey_u_to_d,
@@ -3101,7 +3101,7 @@
 	},
 };
 
-uint16 *joey_turnTable1[5][5] = {
+TurnTable joey_turnTable1 = {
 	{ // turnTableUp
 		0,
 		wjoey_u_to_d,
@@ -3139,7 +3139,7 @@
 	},
 };
 
-uint16 *joey_turnTable2[5][5] = {
+TurnTable joey_turnTable2 = {
 	{ // turnTableUp
 		0,
 		sjoey_u_to_d,
@@ -3191,7 +3191,7 @@
 	ljoey_st_left,	// standLeft
 	ljoey_st_right,	// standRight
 	0,	// standTalk
-	joey_turnTable0,
+	&joey_turnTable0,
 };
 
 MegaSet joey_megaSet1 = {
@@ -3208,7 +3208,7 @@
 	wjoey_st_left,	// standLeft
 	wjoey_st_right,	// standRight
 	0,	// standTalk
-	joey_turnTable1,
+	&joey_turnTable1,
 };
 
 MegaSet joey_megaSet2 = {
@@ -3225,7 +3225,7 @@
 	sjoey_st_left,	// standLeft
 	sjoey_st_right,	// standRight
 	0,	// standTalk
-	joey_turnTable2,
+	&joey_turnTable2,
 };
 
 ExtCompact joey_ext = {
@@ -4350,7 +4350,7 @@
 	0,
 };
 
-uint16 *foster_turnTable0[5][5] = {
+TurnTable foster_turnTable0 = {
 	{ // turnTableUp
 		0,
 		mfoster_u_to_d,
@@ -4388,7 +4388,7 @@
 	},
 };
 
-uint16 *foster_turnTable1[5][5] = {
+TurnTable foster_turnTable1 = {
 	{ // turnTableUp
 		0,
 		foster_u_to_d,
@@ -4426,7 +4426,7 @@
 	},
 };
 
-uint16 *foster_turnTable2[5][5] = {
+TurnTable foster_turnTable2 = {
 	{ // turnTableUp
 		0,
 		fradman_u_to_d,
@@ -4464,7 +4464,7 @@
 	},
 };
 
-uint16 *foster_turnTable3[5][5] = {
+TurnTable foster_turnTable3 = {
 	{ // turnTableUp
 		0,
 		bfoster_u_to_d,
@@ -4516,7 +4516,7 @@
 	mfoster_st_left,	// standLeft
 	mfoster_st_right,	// standRight
 	0,	// standTalk
-	foster_turnTable0,
+	&foster_turnTable0,
 };
 
 MegaSet foster_megaSet1 = {
@@ -4533,7 +4533,7 @@
 	foster_st_left,	// standLeft
 	foster_st_right,	// standRight
 	foster_st_talk,	// standTalk
-	foster_turnTable1,
+	&foster_turnTable1,
 };
 
 MegaSet foster_megaSet2 = {
@@ -4550,7 +4550,7 @@
 	fradman_st_left,	// standLeft
 	fradman_st_right,	// standRight
 	fradman_st_talk,	// standTalk
-	foster_turnTable2,
+	&foster_turnTable2,
 };
 
 MegaSet foster_megaSet3 = {
@@ -4567,7 +4567,7 @@
 	bfoster_st_left,	// standLeft
 	bfoster_st_right,	// standRight
 	0,	// standTalk
-	foster_turnTable3,
+	&foster_turnTable3,
 };
 
 ExtCompact foster_ext = {
@@ -5142,7 +5142,7 @@
 	0,
 };
 
-uint16 *monitor_turnTable0[5][5] = {
+TurnTable monitor_turnTable0 = {
 	{ // turnTableUp
 		0,
 		monitor_u_to_d,
@@ -5194,7 +5194,7 @@
 	monitor_st_left,	// standLeft
 	monitor_st_right,	// standRight
 	monitor_st_talk,	// standTalk
-	monitor_turnTable0,
+	&monitor_turnTable0,
 };
 
 ExtCompact monitor_ext = {





More information about the Scummvm-git-logs mailing list