summaryrefslogtreecommitdiffstats
path: root/byterun/rotatecursor.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/rotatecursor.c')
-rw-r--r--byterun/rotatecursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/rotatecursor.c b/byterun/rotatecursor.c
index 85eb31161..36715b567 100644
--- a/byterun/rotatecursor.c
+++ b/byterun/rotatecursor.c
@@ -70,9 +70,9 @@ void rotatecursor_init (int volatile *p1, int volatile *p2)
atexit (remove_task);
}
-int rotatecursor_action (int direction)
+int rotatecursor_action (int reverse)
{
PrimeTime ((QElemPtr) &mytmtask, 50); /* 20 Hz */
- RotateCursor (direction ? 32 : -32);
+ RotateCursor (reverse ? -32 : 32);
return 0;
}