diff options
author | Eugene Sandulenko | 2005-07-30 21:11:48 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-07-30 21:11:48 +0000 |
commit | 6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch) | |
tree | c44c4e61f18ddd537f7082cb48869cf33d422fbd /backends/PalmOS/Src/palmrdr.cpp | |
parent | 86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff) | |
download | scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2 scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip |
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'backends/PalmOS/Src/palmrdr.cpp')
-rw-r--r-- | backends/PalmOS/Src/palmrdr.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/backends/PalmOS/Src/palmrdr.cpp b/backends/PalmOS/Src/palmrdr.cpp index fcebafb9f0..ea9c8a312b 100644 --- a/backends/PalmOS/Src/palmrdr.cpp +++ b/backends/PalmOS/Src/palmrdr.cpp @@ -84,10 +84,10 @@ void OSystem_PALMOS::updateScreen_wideZodiac() { // clear bottom RctSetRectangle(&r, 0, _screenOffset.y + h, 480, _current_shake_pos); WinFillRectangle(&r, 0); - + destRect.y += _new_shake_pos; _screenOffset.y += _new_shake_pos; - + rumblePack(_new_shake_pos >= 3); _current_shake_pos = _new_shake_pos; } @@ -95,7 +95,7 @@ void OSystem_PALMOS::updateScreen_wideZodiac() { // update screen WinSetDrawWindow(WinGetDisplayWindow()); e = TwGfxDrawPalmBitmap((TwGfxSurfaceType *)_twSrc, &destPoint, (BitmapPtr)_twBmpV3); - e = TwGfxStretchBlt2((TwGfxSurfaceType *)_twDst, &destRect, (TwGfxSurfaceType *)_twSrc, &srcRect, twGfxStretchFast| (gVars->filter ? twGfxStretchSmooth : 0)); + e = TwGfxStretchBlt2((TwGfxSurfaceType *)_twDst, &destRect, (TwGfxSurfaceType *)_twSrc, &srcRect, twGfxStretchFast| (gVars->filter ? twGfxStretchSmooth : 0)); } #endif @@ -114,13 +114,13 @@ void OSystem_PALMOS::updateScreen_widePortrait() { // clear bottom RctSetRectangle(&r, _screenOffset.y + 300, 0, _current_shake_pos, 480); WinFillRectangle(&r, 0); - + dst += _new_shake_pos; rumblePack(_new_shake_pos >= 3); _current_shake_pos = _new_shake_pos; } - + // update screen ARM_START(WideType) ARM_INIT(COMMON_WPORTRAIT) @@ -177,13 +177,13 @@ void OSystem_PALMOS::updateScreen_wideLandscape() { // clear bottom RctSetRectangle(&r, 0, _screenOffset.y + 300, 480, _current_shake_pos); WinFillRectangle(&r, 0); - + dst += _new_shake_pos * 480; rumblePack(_new_shake_pos >= 3); _current_shake_pos = _new_shake_pos; } - + // update screen ARM_START(WideType) ARM_INIT(COMMON_WLANDSCAPE) |