aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/defs.h
diff options
context:
space:
mode:
authorStrangerke2016-12-03 15:26:32 -0800
committerEugene Sandulenko2017-01-25 22:42:10 +0100
commite482209bd33bfb4d7a09bdf60c58ea38253f9cb4 (patch)
tree10001ec15ca851156d3c9adbfdc2b287ee2f44ff /engines/cryo/defs.h
parent6523e3bf9b3d2458f553c22082cd25b658216338 (diff)
downloadscummvm-rg350-e482209bd33bfb4d7a09bdf60c58ea38253f9cb4.tar.gz
scummvm-rg350-e482209bd33bfb4d7a09bdf60c58ea38253f9cb4.tar.bz2
scummvm-rg350-e482209bd33bfb4d7a09bdf60c58ea38253f9cb4.zip
CRYO: Reduce some variable scopes, silent several warnings
Diffstat (limited to 'engines/cryo/defs.h')
-rw-r--r--engines/cryo/defs.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/engines/cryo/defs.h b/engines/cryo/defs.h
index 19e38fc0a5..30ee0ca6b3 100644
--- a/engines/cryo/defs.h
+++ b/engines/cryo/defs.h
@@ -822,7 +822,7 @@ extern uint16 kObjectLocations[100];
extern perso_t kPersons[];
extern cita_t cita_list[];
extern int16 tab_2CB16[];
-extern char tab_2CB1E[8][4];
+extern uint8 tab_2CB1E[8][4];
struct prect_t {
int16 sx, sy, ex, ey;
@@ -859,14 +859,6 @@ extern float flt_2DF7C;
extern float flt_2DF80;
extern float flt_2DF84;
-// Cube faces to texture coords mapping
-// each entry is num_polys(6) * num_faces_per_poly(2) * vertex_per_face(3) * uv(2)
-
-extern int16 cube_texcoords[3][6 * 2 * 3 * 2];
-extern char tab_2E138[4 * 3];
-
-//
-
struct XYZ {
signed short x, y, z;
};