From 16e7a1287829fe1a580f949fabdaf2df9854800f Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 16 Feb 2007 17:13:29 +0000 Subject: Some very obvious cleanups. svn-id: r25635 --- engines/agos/debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/agos/debug.cpp') diff --git a/engines/agos/debug.cpp b/engines/agos/debug.cpp index 4fcb1c947d..c1fb8c8c4f 100644 --- a/engines/agos/debug.cpp +++ b/engines/agos/debug.cpp @@ -338,7 +338,7 @@ void AGOSEngine::dumpVgaFile(const byte *vga) { pp = vga; if (getGameType() == GType_FF || getGameType() == GType_PP) { - p = pp + READ_LE_UINT16(pp + 2);; + p = pp + READ_LE_UINT16(pp + 2); count = READ_LE_UINT16(&((const VgaFileHeader2_Feeble *) p)->imageCount); p = pp + READ_LE_UINT16(&((const VgaFileHeader2_Feeble *) p)->imageTable); @@ -349,7 +349,7 @@ void AGOSEngine::dumpVgaFile(const byte *vga) { p += sizeof(ImageHeader_Feeble); } } else if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2) { - p = pp + READ_BE_UINT16(pp + 4);; + p = pp + READ_BE_UINT16(pp + 4); count = READ_BE_UINT16(&((const VgaFileHeader2_Common *) p)->imageCount); p = pp + READ_BE_UINT16(&((const VgaFileHeader2_Common *) p)->imageTable); -- cgit v1.2.3