From 0a8e552c6d761cb37a248c573c67d9fa468ca12f Mon Sep 17 00:00:00 2001 From: Strangerke Date: Tue, 17 May 2016 22:21:27 +0200 Subject: GNAP: Fix the coding style of a couple of casts --- engines/gnap/scenes/intro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/gnap/scenes') diff --git a/engines/gnap/scenes/intro.cpp b/engines/gnap/scenes/intro.cpp index fa23d6a2b3..1679fe8306 100644 --- a/engines/gnap/scenes/intro.cpp +++ b/engines/gnap/scenes/intro.cpp @@ -90,8 +90,8 @@ void SceneIntro::run() { } else { // The intro AVI is played upside down, it's the only video played in the English version for (uint16 y = 0; y < frame->h / 2; y++) { - uint32 *ptrFrom = (uint32*)frame->getBasePtr(0, y); - uint32 *ptrTo = (uint32*)frame->getBasePtr(0, frame->h - y - 1); + uint32 *ptrFrom = (uint32 *)frame->getBasePtr(0, y); + uint32 *ptrTo = (uint32 *)frame->getBasePtr(0, frame->h - y - 1); for (uint16 x = 0; x < frame->w; x++) { uint32 t = *ptrFrom; *ptrFrom = *ptrTo; -- cgit v1.2.3