diff options
author | Paul Gilbert | 2009-03-01 02:25:46 +0000 |
---|---|---|
committer | Paul Gilbert | 2009-03-01 02:25:46 +0000 |
commit | 3fb5e15072c9769a8d793711aef11360a9a8c48a (patch) | |
tree | 48469964e9899169ada5d595a3a4ba0b7960a463 | |
parent | 57c7593325c23719cbf3845a9a042b0c630b1b83 (diff) | |
download | scummvm-rg350-3fb5e15072c9769a8d793711aef11360a9a8c48a.tar.gz scummvm-rg350-3fb5e15072c9769a8d793711aef11360a9a8c48a.tar.bz2 scummvm-rg350-3fb5e15072c9769a8d793711aef11360a9a8c48a.zip |
Formatting fixes
svn-id: r38996
-rw-r--r-- | engines/cruise/backgroundIncrust.cpp | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/engines/cruise/backgroundIncrust.cpp b/engines/cruise/backgroundIncrust.cpp index 53a80424c2..be872d9f81 100644 --- a/engines/cruise/backgroundIncrust.cpp +++ b/engines/cruise/backgroundIncrust.cpp @@ -36,9 +36,7 @@ void resetBackgroundIncrustList(backgroundIncrustStruct *pHead) { // blit background to another one void addBackgroundIncrustSub1(int fileIdx, int X, int Y, char *ptr2, int16 scale, char *destBuffer, char *dataPtr) { - if (*dataPtr == 0) { - ASSERT(0); - } + assert(*dataPtr != 0); buildPolyModel(X, Y, scale, ptr2, destBuffer, dataPtr); } @@ -53,7 +51,7 @@ void backupBackground(backgroundIncrustStruct *pIncrust, int X, int Y, int width pIncrust->ptr = (uint8*)malloc(width * height); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { - pIncrust->ptr[i*width+j] = pBackground[(i+Y)*320+j+X]; + pIncrust->ptr[i * width + j] = pBackground[(i+Y) * 320 + j + X]; } } } @@ -75,7 +73,7 @@ void restoreBackground(backgroundIncrustStruct *pIncrust) { for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { - pBackground[(i+Y)*320+j+X] = pIncrust->ptr[i*width+j]; + pBackground[(i+Y)* 320 + j + X] = pIncrust->ptr[i * width + j]; } } } @@ -102,10 +100,7 @@ backgroundIncrustStruct *addBackgroundIncrust(int16 overlayIdx, int16 objectIdx, backgroundPtr = backgroundPtrtable[backgroundIdx]; - if (!backgroundPtr) { - ASSERT(0); - return NULL; - } + assert(backgroundPtr != NULL); currentHead = pHead; currentHead2 = currentHead->next; @@ -225,9 +220,8 @@ void freeBackgroundIncrustList(backgroundIncrustStruct *pHead) { while (pCurrent) { backgroundIncrustStruct *pNext = pCurrent->next; - if (pCurrent->ptr) { + if (pCurrent->ptr) free(pCurrent->ptr); - } free(pCurrent); @@ -316,7 +310,6 @@ void unmergeBackgroundIncrust(backgroundIncrustStruct * pHead, int ovl, int idx) pl = pl2->next; } - } } // End of namespace Cruise |