diff options
| author | cadmic <cadmic24@gmail.com> | 2024-09-26 12:19:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-26 15:19:23 -0400 |
| commit | 2f3c8084c9dde7452c6fa3380b17dcc40b9385fa (patch) | |
| tree | fac8fbdc02b917fc905e2f4fe8cfd9bfc9fe8976 /src | |
| parent | bccb219ea3c8542c160706de70ad540f0822d091 (diff) | |
[PAL N64] Set up build system and extract assets for pal-1.0 and pal-1.1 (#2205)
* [PAL N64] Set up build system and extract assets
* TOOD -> TODO
* Apparently this is what the formatter wants
Diffstat (limited to 'src')
| -rw-r--r-- | src/boot/build.c | 10 | ||||
| -rw-r--r-- | src/overlays/gamestates/ovl_file_choose/z_file_nameset.c | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/boot/build.c b/src/boot/build.c index 3782c43da..49992adc5 100644 --- a/src/boot/build.c +++ b/src/boot/build.c @@ -6,8 +6,16 @@ const char gBuildCreator[] = "zelda@srd44"; const char gBuildCreator[] = "zelda@srd022j"; #endif -#if OOT_VERSION == NTSC_1_2 +#if OOT_VERSION == NTSC_1_0 +const char gBuildDate[] = "98-10-21 04:56:31"; +#elif OOT_VERSION == NTSC_1_1 +const char gBuildDate[] = "98-10-26 10:58:45"; +#elif OOT_VERSION == PAL_1_0 +const char gBuildDate[] = "98-11-10 14:34:22"; +#elif OOT_VERSION == NTSC_1_2 const char gBuildDate[] = "98-11-12 18:17:03"; +#elif OOT_VERSION == PAL_1_1 +const char gBuildDate[] = "98-11-18 17:36:49"; #elif OOT_VERSION == GC_JP const char gBuildDate[] = "02-10-29 23:49:53"; #elif OOT_VERSION == GC_JP_MQ diff --git a/src/overlays/gamestates/ovl_file_choose/z_file_nameset.c b/src/overlays/gamestates/ovl_file_choose/z_file_nameset.c index 35f7684a1..39a107926 100644 --- a/src/overlays/gamestates/ovl_file_choose/z_file_nameset.c +++ b/src/overlays/gamestates/ovl_file_choose/z_file_nameset.c @@ -1556,6 +1556,8 @@ void FileSelect_DrawOptionsImpl(GameState* thisx) { #if OOT_NTSC gSPVertex(POLY_OPA_DISP++, gOptionsMenuHeadersVtx, 32, 0); +#elif OOT_PAL_N64 + // TODO: implement PAL N64 version #else if (gSaveContext.language == LANGUAGE_GER) { gSPVertex(POLY_OPA_DISP++, gOptionsMenuHeadersGERVtx, 32, 0); @@ -1580,6 +1582,8 @@ void FileSelect_DrawOptionsImpl(GameState* thisx) { #if OOT_NTSC gSPVertex(POLY_OPA_DISP++, gOptionsMenuSettingsVtx, 32, 0); +#elif OOT_PAL_N64 + // TODO: implement PAL N64 version #else if (gSaveContext.language == LANGUAGE_GER) { gSPVertex(POLY_OPA_DISP++, gOptionsMenuSettingsGERVtx, 32, 0); |
