From b2332744e4ccf9d0e19a7b1c46a4a66f46a453e4 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 7 Feb 2009 01:11:51 +0000 Subject: Cleanup. svn-id: r36228 --- engines/agos/debug.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/agos/debug.cpp') diff --git a/engines/agos/debug.cpp b/engines/agos/debug.cpp index d483275a9f..db881a0049 100644 --- a/engines/agos/debug.cpp +++ b/engines/agos/debug.cpp @@ -284,13 +284,13 @@ void AGOSEngine::dumpVideoScript(const byte *src, bool one_opcode_only) { } while (!one_opcode_only); } -void AGOSEngine::dumpVgaScript(const byte *ptr, uint res, uint sprite_id) { - dumpVgaScriptAlways(ptr, res, sprite_id); +void AGOSEngine::dumpVgaScript(const byte *ptr, uint res, uint id) { + dumpVgaScriptAlways(ptr, res, id); } -void AGOSEngine::dumpVgaScriptAlways(const byte *ptr, uint res, uint sprite_id) { +void AGOSEngine::dumpVgaScriptAlways(const byte *ptr, uint res, uint id) { printf("; address=%x, vgafile=%d vgasprite=%d\n", - (unsigned int)(ptr - _vgaBufferPointers[res].vgaFile1), res, sprite_id); + (unsigned int)(ptr - _vgaBufferPointers[res].vgaFile1), res, id); dumpVideoScript(ptr, false); printf("; end\n"); } -- cgit v1.2.3