aboutsummaryrefslogtreecommitdiff
path: root/backends/PalmOS/Src/arm/proc3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/PalmOS/Src/arm/proc3.cpp')
-rw-r--r--backends/PalmOS/Src/arm/proc3.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/backends/PalmOS/Src/arm/proc3.cpp b/backends/PalmOS/Src/arm/proc3.cpp
index 650d05ab37..c56776492d 100644
--- a/backends/PalmOS/Src/arm/proc3.cpp
+++ b/backends/PalmOS/Src/arm/proc3.cpp
@@ -95,8 +95,8 @@ UInt32 CostumeRenderer_proc3(void *userData68KP) {
}
if (!--height) {
if (!--v1.skip_width)
- return _scaleIndexX;
- //goto end_jump;
+ //return _scaleIndexX;
+ goto end_jump;
height = _height;
y = v1.y;
@@ -106,8 +106,8 @@ UInt32 CostumeRenderer_proc3(void *userData68KP) {
if (_scaleX == 255 || v1.scaletable[_scaleIndexX] < _scaleX) {
v1.x += v1.scaleXstep;
if (v1.x < 0 || v1.x >= _out_w)
- return _scaleIndexX;
- //goto end_jump;
+ //return _scaleIndexX;
+ goto end_jump;
maskbit = revBitMask[v1.x & 7];
v1.destptr += v1.scaleXstep;
}
@@ -119,9 +119,9 @@ UInt32 CostumeRenderer_proc3(void *userData68KP) {
} while (--len);
} while (1);
-//end_jump:
+end_jump:
// v1comp->x = ByteSwap32(v1.x);
// v1comp->destptr = (byte *)ByteSwap32(v1.destptr);
-// return _scaleIndexX;
-} \ No newline at end of file
+ return _scaleIndexX;
+}