From f833a5ef2c45cd80499cad2b0f7fe44fb211bdd6 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sat, 21 Jan 2006 19:16:39 +0000 Subject: [PATCH] don't show "loading ARM" except on debug versions. It's fast enough now. --- palm/enter68k.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/palm/enter68k.c b/palm/enter68k.c index f07d86305..b63b3be17 100644 --- a/palm/enter68k.c +++ b/palm/enter68k.c @@ -214,7 +214,9 @@ PilotMain( UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags) UInt32 result; Boolean loaded; +#ifdef DEBUG WinDrawChars( "Loading ARM code...", 19, 5, 25 ); +#endif loaded = setupPnolet( &pnoCode, &gotTable ); dataP = (PnoletUserData*)MemPtrNew( sizeof(PnoletUserData) ); @@ -238,7 +240,7 @@ PilotMain( UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags) #ifdef FEATURE_PNOAND68K result = PM2(PilotMain)( cmd, cmdPBP, launchFlags); #else - alertUser( "This copy of Crosswords runs only on ARM-based Palms. " + alertUser( "This copy of Crosswords runs only on ARM-based Palms. " "Get the right version at xwords.sf.net." ); #endif }