diff options
author | Strangerke | 2014-07-27 00:46:30 +0200 |
---|---|---|
committer | Strangerke | 2014-07-27 00:46:30 +0200 |
commit | c394a685891cfab7d5f59233a5ca82cd0db92833 (patch) | |
tree | fc4a1e46df6c574511367f6b710928c3fd02414a /engines | |
parent | 8e28a2c0d0fe03bf3ef0f6315ceeb637846f4881 (diff) | |
download | scummvm-rg350-c394a685891cfab7d5f59233a5ca82cd0db92833.tar.gz scummvm-rg350-c394a685891cfab7d5f59233a5ca82cd0db92833.tar.bz2 scummvm-rg350-c394a685891cfab7d5f59233a5ca82cd0db92833.zip |
CGE2: Fix misleading tabulation, improve warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cge2/vga13h.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge2/vga13h.cpp b/engines/cge2/vga13h.cpp index ea82fb7880..617cb7d250 100644 --- a/engines/cge2/vga13h.cpp +++ b/engines/cge2/vga13h.cpp @@ -124,7 +124,7 @@ BitmapPtr Sprite::getShp() { int i = e->_seq[_seqPtr]._now; if (i >= _shpCnt) - error("Invalid PHASE in SPRITE::Shp() %s", _file); + error("Invalid PHASE in SPRITE::Shp() %s - %d", _file, i); return e->_shpList + i; } @@ -393,7 +393,7 @@ Sprite *Sprite::expand() { if (!shpcnt) error("No shapes - %s", fname); - } else // no sprite description: try to read immediately from .BMP + } else // no sprite description: try to read immediately from .BMP shplist[shpcnt++] = Bitmap(_vm, _file); if (curSeq) { |