Remove datetime from version.c to make debug builds reproducible

This commit is contained in:
CrashOveride95
2022-04-10 10:44:32 -04:00
committed by Mr-Wiseguy
parent ac0299e5b5
commit 2118234f9b
3 changed files with 0 additions and 3 deletions

View File

@@ -312,7 +312,6 @@ void thread3_main(UNUSED void *arg) {
#ifdef DEBUG
osSyncPrintf("Super Mario 64\n");
osSyncPrintf("Built by: %s\n", __username__);
osSyncPrintf("Date : %s\n", __datetime__);
osSyncPrintf("Compiler: %s\n", __compiler__);
osSyncPrintf("Linker : %s\n", __linker__);
#endif

View File

@@ -2,6 +2,5 @@
#include "src/game/version_data.h"
char __username__[] = __USERNAME__;
char __datetime__[] = __DATETIME__;
char __compiler__[] = __COMPILER__;
char __linker__[] = __LINKER__;

View File

@@ -2,7 +2,6 @@
#define VER_H
extern char __username__[];
extern char __datetime__[];
extern char __compiler__[];
extern char __linker__[];