aboutsummaryrefslogtreecommitdiff
path: root/scumm/boxes.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-07-22 20:53:01 +0000
committerTorbjörn Andersson2003-07-22 20:53:01 +0000
commit3b033956aa08b0e90ae6bb30b6ecd690926cc4ab (patch)
tree317cde02b9a0df6a8d2e4b8353cee7a98498fa93 /scumm/boxes.cpp
parent7665890d9738b14180d03e0f6de34851b932b572 (diff)
downloadscummvm-rg350-3b033956aa08b0e90ae6bb30b6ecd690926cc4ab.tar.gz
scummvm-rg350-3b033956aa08b0e90ae6bb30b6ecd690926cc4ab.tar.bz2
scummvm-rg350-3b033956aa08b0e90ae6bb30b6ecd690926cc4ab.zip
Changed "SCALLING" to "SCALING".
svn-id: r9134
Diffstat (limited to 'scumm/boxes.cpp')
-rw-r--r--scumm/boxes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/boxes.cpp b/scumm/boxes.cpp
index 64d0dcd405..f46c68d6a5 100644
--- a/scumm/boxes.cpp
+++ b/scumm/boxes.cpp
@@ -149,7 +149,7 @@ void Scumm::setBoxScaleSlot(int box, int slot) {
}
int Scumm::getScale(int box, int x, int y) {
- if (_features & GF_NO_SCALLING)
+ if (_features & GF_NO_SCALING)
return 255;
Box *ptr = getBoxBaseAddr(box);
@@ -205,7 +205,7 @@ int Scumm::getScale(int box, int x, int y) {
}
int Scumm::getBoxScale(int box) {
- if (_features & GF_NO_SCALLING)
+ if (_features & GF_NO_SCALING)
return 255;
Box *ptr = getBoxBaseAddr(box);
if (!ptr)