Began picking through the old logic

This commit is contained in:
2024-05-19 04:26:15 +10:00
parent 361fa78ffb
commit fbcb2e0331
3 changed files with 55 additions and 0 deletions

8
source/toy_common.c Normal file
View File

@@ -0,0 +1,8 @@
#include "toy_common.h"
//defined separately, as compilation can take several seconds, invalidating the comparisons of __TIME__
static const char* build = __DATE__ " " __TIME__ ";development branch";
const char* Toy_private_version_build() {
return build;
}