aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cruise/function.cpp')
-rw-r--r--engines/cruise/function.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp
index 7adc358bee..b15c8fdb4f 100644
--- a/engines/cruise/function.cpp
+++ b/engines/cruise/function.cpp
@@ -950,7 +950,7 @@ int16 Op_ComputeLine(void) {
int x2 = popVar();
int y1 = popVar();
int x1 = popVar();
-
+
point* pDest = (point*)popPtr();
int maxValue = cor_droite( x1, y1, x2, y2, pDest);
@@ -1382,7 +1382,7 @@ int16 Op_Strcat(void) {
while(*pSource)
*(pDest++) = *(pSource++);
*(pDest++) = '\0';
-
+
return 0;
}
@@ -1559,7 +1559,7 @@ int16 Op_UserWait(void)
return 0;
}
-opcodeFunction opcodeTablePtr[] =
+opcodeFunction opcodeTablePtr[] =
{
NULL, // 0x00
Op_FadeIn,