mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-06-08 11:47:17 -04:00
24 lines
459 B
C
24 lines
459 B
C
#include <ultra64.h>
|
|
#include "compiletime.h"
|
|
|
|
#ifdef BYTEMATCH
|
|
#ifdef VERSION_US
|
|
char *get_compile_time(void) {
|
|
return "Jun 29 1997 20:46:05";
|
|
}
|
|
#elif VERSION_EU
|
|
char *get_compile_time(void) {
|
|
return "Jul 31 1997 14:53:03";
|
|
}
|
|
#elif VERSION_JP
|
|
char *get_compile_time(void) {
|
|
return "Jul 10 1997 14:53:37";
|
|
}
|
|
#endif
|
|
#else
|
|
char *get_compile_time(void) {
|
|
return __DATE__" " __TIME__;
|
|
}
|
|
#endif
|
|
|