also show in TFM_VERSION[_S] that we're in-development

This commit is contained in:
Steffen Jaeckel 2017-06-14 13:17:44 +02:00
parent aae8ed3809
commit fe56698355

View File

@ -16,14 +16,14 @@
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
/* 0xMaMiPaXX /* 0xMaMiPaDe
* Major * Major
* Minor * Minor
* Patch * Patch
* XX - undefined * Development - 00=release, 01=in-development
*/ */
#define TFM_VERSION 0x000D0100 #define TFM_VERSION 0x000D0101
#define TFM_VERSION_S "v0.13.1" #define TFM_VERSION_S "v0.13.1-next"
#ifndef MIN #ifndef MIN
#define MIN(x,y) ((x)<(y)?(x):(y)) #define MIN(x,y) ((x)<(y)?(x):(y))