From 2e72ed0f696e590f0320a52686a91ddf6cc6fe56 Mon Sep 17 00:00:00 2001 From: Joost Peters Date: Fri, 14 Aug 2009 23:20:46 +0000 Subject: remove double semi-colon -- hopefully this kicks the buildbot back into action =) svn-id: r43388 --- engines/sword2/sprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sword2/sprite.cpp') diff --git a/engines/sword2/sprite.cpp b/engines/sword2/sprite.cpp index 1e55792adb..39abb8efe9 100644 --- a/engines/sword2/sprite.cpp +++ b/engines/sword2/sprite.cpp @@ -341,7 +341,7 @@ void Screen::recomposeCompPsxSprite(SpriteInfo *s) { uint16 noStripes = (s->w / 254) + ((s->w % 254) ? 1 : 0); uint16 lastStripeSize = (s->w % 254) ? s->w % 254 : 254; byte *buffer = (byte *)malloc(s->w * s->h / 2); - byte *stripeBuffer = (byte *)malloc(254 * s->h);; + byte *stripeBuffer = (byte *)malloc(254 * s->h); memset(buffer, 0, s->w * s->h / 2); uint32 skipData = 0; -- cgit v1.2.3