From: Shamus Hammons Date: Fri, 29 Aug 2003 19:50:31 +0000 (+0000) Subject: Update for 1.0.6 release X-Git-Tag: 1.0.6~51 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c6628e5d7f732e1bfac22ce81f5a79e20dfbb8e;p=virtualjaguar Update for 1.0.6 release --- diff --git a/src/include/version.h b/src/include/version.h index 53322d1..4edc424 100644 --- a/src/include/version.h +++ b/src/include/version.h @@ -1,14 +1,6 @@ -//////////////////////////////////////////////////////////////////////////////// // -//////////////////////////////////////////////////////////////////////////////// +// VERSION.H: Header file // -// -// -// -// -// -// -//////////////////////////////////////////////////////////////////////////////// #ifndef __VERSION_H__ #define __VERSION_H__ @@ -20,4 +12,4 @@ void version_init(void); void version_display(FILE *); void version_done(void); -#endif +#endif // __VERSION_H__ diff --git a/src/version.cpp b/src/version.cpp index 798f8ff..e7b2c28 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,7 +1,7 @@ // // VERSION.CPP // -// by cal2 +// by Cal2 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups by James L. Hammons // @@ -14,7 +14,7 @@ void version_init(void) void version_display(FILE * fp) { - fprintf(fp, "VirtualJaguar v1.0.5 (Last full build on %s %s)\n", __DATE__, __TIME__); + fprintf(fp, "VirtualJaguar v1.0.6 (Last full build was on %s %s)\n", __DATE__, __TIME__); } void version_done(void)