diff options
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -69,7 +69,7 @@ void cText2SkinScreen::DrawBitmap(int x, int y, const cBitmap &Bitmap, const tCo #else // mOsd->DrawBitmap(x, y, Bitmap, ColorFg, ColorBg); cBitmap *bm = NULL; - for (int i = 0; (bm=mOsd->GetBitmap(i)) != NULL; ++i) + for (int i = 0; (bm = mOsd->GetBitmap(i)) != NULL; ++i) DrawBitmapOverlay(*bm, x, y, (cBitmap&)Bitmap, ColorMask); #endif } @@ -126,12 +126,12 @@ void cText2SkinScreen::Flush(void) #endif } #ifdef BENCH - int x1=0,y1=0,x2=0,y2=0; + int x1 = 0, y1 = 0, x2 = 0, y2 = 0; cBitmap *bm; - for(int j=0; (bm=mOsd->GetBitmap(j)) != NULL; j++ ) - if(bm->Dirty(x1,y1,x2,y2)) + for (int j = 0; (bm = mOsd->GetBitmap(j)) != NULL; j++) + if (bm->Dirty(x1, y1, x2, y2)) fprintf(stderr, "Flush dirty screen area %2i: x1=%3i x2=%3i y1=%3i y2=%3i\n", - j,x1,x2,y1,y2 ); + j, x1, x2, y1, y2); #endif if (!mOffScreen) mOsd->Flush(); |