aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 7c05a713b0..ec8020ab6e 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -1054,14 +1054,15 @@ public:
void setScaleItem(int slot, int a, int b, int c, int d);
protected:
- // V8 scaling stuff: should be in V8 class
+ // Scaling slots/items
struct ScaleSlot {
int x1, y1, scale1;
int x2, y2, scale2;
};
- ScaleSlot _scaleSlots[20]; // FIXME - not sure if this limit is right, but based on my observations it is
+ ScaleSlot _scaleSlots[20];
void setScaleSlot(int slot, int x1, int y1, int scale1, int x2, int y2, int scale2);
void setBoxScaleSlot(int box, int slot);
+ void convertScaleTableToScaleSlot(int slot);
void createBoxMatrix();
bool areBoxesNeighbours(int i, int j);