From bc2ec5afdeb9be3cc35b4e45f21d783c79cf6709 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 23 Jul 2008 10:27:24 +0000 Subject: Got rid of some typedefs svn-id: r33235 --- engines/tinsel/background.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/tinsel/background.cpp') diff --git a/engines/tinsel/background.cpp b/engines/tinsel/background.cpp index 05d36e9412..6c586e11d9 100644 --- a/engines/tinsel/background.cpp +++ b/engines/tinsel/background.cpp @@ -50,7 +50,7 @@ bool bNoScroll; void InitBackground(BACKGND *pBgnd) { int i; // playfield counter - PPLAYFIELD pPlayfield; // pointer to current playfield + PLAYFIELD *pPlayfield; // pointer to current playfield // set current background pCurBgnd = pBgnd; @@ -87,7 +87,7 @@ void InitBackground(BACKGND *pBgnd) { */ void PlayfieldSetPos(int which, int newXpos, int newYpos) { - PPLAYFIELD pPlayfield; // pointer to relavent playfield + PLAYFIELD *pPlayfield; // pointer to relavent playfield // make sure there is a background assert(pCurBgnd != NULL); @@ -114,7 +114,7 @@ void PlayfieldSetPos(int which, int newXpos, int newYpos) { */ void PlayfieldGetPos(int which, int *pXpos, int *pYpos) { - PPLAYFIELD pPlayfield; // pointer to relavent playfield + PLAYFIELD *pPlayfield; // pointer to relavent playfield // make sure there is a background assert(pCurBgnd != NULL); @@ -136,7 +136,7 @@ void PlayfieldGetPos(int which, int *pXpos, int *pYpos) { */ OBJECT *GetPlayfieldList(int which) { - PPLAYFIELD pPlayfield; // pointer to relavent playfield + PLAYFIELD *pPlayfield; // pointer to relavent playfield // make sure there is a background assert(pCurBgnd != NULL); @@ -159,7 +159,7 @@ OBJECT *GetPlayfieldList(int which) { void DrawBackgnd(void) { int i; // playfield counter - PPLAYFIELD pPlay; // playfield pointer + PLAYFIELD *pPlay; // playfield pointer int prevX, prevY; // save interger part of position Common::Point ptWin; // window top left -- cgit v1.2.3