From 9425c56de8c5bd886af4ee9433cba37fe7a1a01b Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Tue, 4 Oct 2011 15:19:17 +0200 Subject: [PATCH] Null terminate version compatibility list --- src/common/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/version.h b/src/common/version.h index a40ee5b8b..1bffde34f 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -28,7 +28,7 @@ namespace love const int VERSION_MINOR = 8; const int VERSION_REV = 0; const char * VERSION = "0.8.0"; - const char * VERSION_COMPATIBILITY[] = { VERSION }; + const char * VERSION_COMPATIBILITY[] = { VERSION, 0 }; const char * VERSION_CODENAME = "Rubber Piggy"; } // love