New no-game screen (credits go to rude), updated version number and codename

This commit is contained in:
Bart van Strien
2011-06-23 17:08:26 +02:00
parent d9c5892f0a
commit a012a4408e
10 changed files with 1152 additions and 1765 deletions
+5 -5
View File
@@ -25,12 +25,12 @@ namespace love
{
// Version stuff.
const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 7;
const int VERSION_REV = 2;
const int VERSION_MINOR = 8;
const int VERSION_REV = 0;
const int VERSION = VERSION_MAJOR*100 + VERSION_MINOR*10 + VERSION_REV;
const int VERSION_COMPATIBILITY[] = { VERSION, 071, 070, 0 };
const char * VERSION_STR = "0.7.2";
const char * VERSION_CODENAME = "Game Slave";
const int VERSION_COMPATIBILITY[] = { VERSION, 072, 071, 070, 0 };
const char * VERSION_STR = "0.8.0";
const char * VERSION_CODENAME = "Rubber Piggy";
} // love