aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/background.cpp
diff options
context:
space:
mode:
authorMax Horn2008-07-23 10:27:24 +0000
committerMax Horn2008-07-23 10:27:24 +0000
commitbc2ec5afdeb9be3cc35b4e45f21d783c79cf6709 (patch)
treeb5ba2678b87cccce2728fc67c6bc55fdc2ba1094 /engines/tinsel/background.cpp
parentd5e2c6d4bf32d066948df8a8a2bd4730e473a1cc (diff)
downloadscummvm-rg350-bc2ec5afdeb9be3cc35b4e45f21d783c79cf6709.tar.gz
scummvm-rg350-bc2ec5afdeb9be3cc35b4e45f21d783c79cf6709.tar.bz2
scummvm-rg350-bc2ec5afdeb9be3cc35b4e45f21d783c79cf6709.zip
Got rid of some typedefs
svn-id: r33235
Diffstat (limited to 'engines/tinsel/background.cpp')
-rw-r--r--engines/tinsel/background.cpp10
1 files changed, 5 insertions, 5 deletions
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