From 8edc3e987df1ce7e9eaba9257d6f2155b4217a36 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sun, 8 Jan 2006 03:26:08 +0000 Subject: [PATCH] catch up with api changes so builds again -- WTF :-) --- xwords4/franklin/frankmain.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwords4/franklin/frankmain.cpp b/xwords4/franklin/frankmain.cpp index adb39eba9..0af405732 100644 --- a/xwords4/franklin/frankmain.cpp +++ b/xwords4/franklin/frankmain.cpp @@ -147,8 +147,8 @@ class CXWordsWindow : public CWindow { U16 fProgressCurLine; /* There's a wasted slot here, but it simplifies indexing */ - TimerProc fTimerProcs[TIMER_NUM_PLUS_ONE]; - void* fTimerClosures[TIMER_NUM_PLUS_ONE]; + TimerProc fTimerProcs[NUM_TIMERS_PLUS_ONE]; + void* fTimerClosures[NUM_TIMERS_PLUS_ONE]; XP_U8 phoniesAction; BOOL penDown; @@ -501,7 +501,7 @@ CXWordsWindow::MsgHandler( MSG_TYPE type, CViewable *from, S32 data ) case MSG_PEN_DOWN: this->penDown = TRUE; - if ( board_handlePenDown( fGame.board, drag_x, drag_y, 0, &handled ) ) { + if ( board_handlePenDown( fGame.board, drag_x, drag_y, &handled ) ) { GUI_NeedUpdate(); result = 1; }