X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fversion.cpp;h=e7b2c2859c091fd33e9394a72932dea95b0bf3ce;hb=da2d8843238769dbc93dd978f48c2c3843fce52d;hp=53d86d30a96299c30b8bf0ad6eb7ab36e766a307;hpb=86bd0f2592c3cd674239532247276bd2d579a857;p=virtualjaguar diff --git a/src/version.cpp b/src/version.cpp index 53d86d3..e7b2c28 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,58 +1,22 @@ -//////////////////////////////////////////////////////////////////////////////// // -//////////////////////////////////////////////////////////////////////////////// +// VERSION.CPP // +// by Cal2 +// GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) +// Cleanups by James L. Hammons // -// -// -// -// -// -//////////////////////////////////////////////////////////////////////////////// -#include "include/version.h" +#include "version.h" -//////////////////////////////////////////////////////////////////////////////// -// -//////////////////////////////////////////////////////////////////////////////// -// -// -// -// -// -// -// -//////////////////////////////////////////////////////////////////////////////// void version_init(void) { } -//////////////////////////////////////////////////////////////////////////////// -// -//////////////////////////////////////////////////////////////////////////////// -// -// -// -// -// -// -// -//////////////////////////////////////////////////////////////////////////////// -void version_display(FILE *fp) + +void version_display(FILE * fp) { - fprintf(fp,"VirtualJaguar v1.0.0 (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) { } -