Fix text and add message to startup

This commit is contained in:
pagefault
2005-10-04 13:47:57 +00:00
parent 88f7e47293
commit 29223616eb

View File

@@ -238,8 +238,14 @@ void zstart ()
puts("please read 'LICENSE.TXT' thoroughly before doing so.\n"); puts("please read 'LICENSE.TXT' thoroughly before doing so.\n");
puts("Use ZSNES -? for command line definitions.\n"); puts("Use ZSNES -? for command line definitions.\n");
#ifndef __RELEASE__
puts("This is a work in progress build. It contains code which");
puts("May or may not be complete");
#endif
asm_call(SystemInit); asm_call(SystemInit);
#ifdef OPENSPC #ifdef OPENSPC
OSPC_Init(); OSPC_Init();
#else #else
@@ -354,6 +360,9 @@ void DisplayBatteryStatus()
#ifdef __WIN32__ #ifdef __WIN32__
int batteryTime = WinCheckBatteryTime(); int batteryTime = WinCheckBatteryTime();
strcpy(CSStatus2, "");
strcpy(CSStatus3, "");
if (batteryTime > 0) if (batteryTime > 0)
{ {
strcpy(CSStatus, "Battery time remaining\0"); strcpy(CSStatus, "Battery time remaining\0");