aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorjohndoe1232014-02-16 00:21:32 +0100
committerjohndoe1232014-02-16 00:21:32 +0100
commitf0acfd4645b19592812acd45b6765303238c1cfe (patch)
treeb0c0c6c8f36f0729e0d17a87025f593012998469 /engines
parent2f22673945f69268c031ebbb7b0d1cd3f01c6e39 (diff)
downloadscummvm-rg350-f0acfd4645b19592812acd45b6765303238c1cfe.tar.gz
scummvm-rg350-f0acfd4645b19592812acd45b6765303238c1cfe.tar.bz2
scummvm-rg350-f0acfd4645b19592812acd45b6765303238c1cfe.zip
BBVS: Use int16 instead of int in Rect struct
Diffstat (limited to 'engines')
-rw-r--r--engines/bbvs/bbvs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bbvs/bbvs.h b/engines/bbvs/bbvs.h
index 5853b8074e..b429c315f7 100644
--- a/engines/bbvs/bbvs.h
+++ b/engines/bbvs/bbvs.h
@@ -157,7 +157,7 @@ struct BBPolygon {
};
struct Rect {
- int left, top, right, bottom;
+ int16 left, top, right, bottom;
};
struct SceneObject {