diff options
-rw-r--r-- | engines/parallaction/gfxbase.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/parallaction/gfxbase.cpp b/engines/parallaction/gfxbase.cpp index c032f417bd..a3fd8c413b 100644 --- a/engines/parallaction/gfxbase.cpp +++ b/engines/parallaction/gfxbase.cpp @@ -57,13 +57,13 @@ uint GfxObj::getNum() { } -void GfxObj::getRect(uint frame, Common::Rect &r) { - _frames->getRect(frame, r); +void GfxObj::getRect(uint f, Common::Rect &r) { + _frames->getRect(f, r); } -byte *GfxObj::getData(uint frame) { - return _frames->getData(frame); +byte *GfxObj::getData(uint f) { + return _frames->getData(f); } |