Fixed some warnings.

This commit is contained in:
n-a-c-h
2005-02-14 10:12:41 +00:00
parent bd5d9bf8b1
commit 264e79e97a

View File

@@ -21,8 +21,12 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#ifdef __LINUX__
#include "gblhdr.h"
#else
#include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#endif
//C++ style code in C //C++ style code in C
#define bool unsigned char #define bool unsigned char
@@ -207,14 +211,14 @@ void zstart ()
StartUp (); StartUp ();
// Print welcome message. // Print welcome message.
printf ("ZSNES v%s, (c) 1997-2005, ZSNES Team\n\n", ZVERSION); printf("ZSNES v%s, (c) 1997-2005, ZSNES Team\n", ZVERSION);
printf ("Be sure to check http://www.zsnes.com/ for the latest version.\n"); puts("Be sure to check http://www.zsnes.com/ for the latest version.");
printf ("Please report crashes to zsnes-devel@lists.sourceforge.net.\n\n"); puts("Please report crashes to zsnes-devel@lists.sourceforge.net.\n");
printf ("ZSNES is written by the ZSNES Team (See AUTHORS.TXT)\n"); puts("ZSNES is written by the ZSNES Team (See AUTHORS.TXT)");
printf ("ZSNES comes with ABSOLUTELY NO WARRANTY. This is free software,\n"); puts("ZSNES comes with ABSOLUTELY NO WARRANTY. This is free software,");
printf ("and you are welcome to redistribute it under certain conditions;\n"); puts("and you are welcome to redistribute it under certain conditions;");
printf ("please read 'LICENSE.TXT' thoroughly before doing so.\n\n"); puts("please read 'LICENSE.TXT' thoroughly before doing so.\n");
printf ("Use ZSNES -? for command line defintitions.\n\n"); puts("Use ZSNES -? for command line defintitions.\n");
SystemInit (); SystemInit ();