Embedded nogame screen into binary and exposed version info.

This commit is contained in:
rude
2009-08-15 12:48:32 +02:00
parent 576a5b0903
commit 579f9c75db
18 changed files with 1498 additions and 101 deletions
+6 -3
View File
@@ -40,9 +40,12 @@
# define _CRT_SECURE_NO_WARNINGS
#endif
// Build.
#define LOVE_BUILD_EXE 1
#define LOVE_BUILD_DLL 0
#ifndef LOVE_BUILD
# define LOVE_BUILD
# define LOVE_BUILD_STANDALONE
# define LOVE_BUILD_EXE
//# define LOVE_BUILD_DLL
#endif
// DLL-stuff.
#ifdef LOVE_WINDOWS
+5 -4
View File
@@ -24,10 +24,11 @@
namespace love
{
// Version stuff.
const char VERSION_MAJOR = 0;
const char VERSION_MINOR = 6;
const char VERSION_REV = 0;
const int VERSION_COMPATIBILITY[] = { 0 };
const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 6;
const int VERSION_REV = 0;
const int VERSION = VERSION_MAJOR*100 + VERSION_MINOR*10 + VERSION_REV;
const int VERSION_COMPATIBILITY[] = { VERSION, 0 };
const char * VERSION_STR = "0.6.0";
const char * VERSION_CODENAME = "Jiggly Juice";