Browse Source

Increase GPB minor version because of changes in TTFGlyph.

Michal Srb 11 years ago
parent
commit
7fd842f292
2 changed files with 2 additions and 2 deletions
  1. 1 1
      gameplay/src/Bundle.cpp
  2. 1 1
      tools/encoder/src/GPBFile.h

+ 1 - 1
gameplay/src/Bundle.cpp

@@ -28,7 +28,7 @@
 #define BUNDLE_MAX_STRING_LENGTH        5000
 
 #define BUNDLE_VERSION_MAJOR_FONT_FORMAT  1
-#define BUNDLE_VERSION_MINOR_FONT_FORMAT  4
+#define BUNDLE_VERSION_MINOR_FONT_FORMAT  5
 
 namespace gameplay
 {

+ 1 - 1
tools/encoder/src/GPBFile.h

@@ -21,7 +21,7 @@ namespace gameplay
  * Increment the version number when making a change that break binary compatibility.
  * [0] is major, [1] is minor.
  */
-const unsigned char GPB_VERSION[2] = {1, 4};
+const unsigned char GPB_VERSION[2] = {1, 5};
 
 /**
  * The GamePlay Binary file class handles writing the GamePlay Binary file.