mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 09:20:17 +00:00
[ntsc-1.2] Import n64dd code from Decompollaborate/n64dd (#2136)
* Import n64dd code from Decompollaborate/n64dd Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> Co-authored-by: Elliptic Ellipsis <elliptic.ellipsis@gmail.com> * Don't stub out missing textures * Remove @brief * Add low-effort file comments * Match OoT if style * Fix n64dd matching due to int vs long * Fix English n64dd error textures * Compress n64dd segment * Align n64dd to 0x40 --------- Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> Co-authored-by: Elliptic Ellipsis <elliptic.ellipsis@gmail.com>
This commit is contained in:
parent
c27b83ac29
commit
e52d135e15
22 changed files with 2199 additions and 30 deletions
23
src/n64dd/n64dd_error_textures.c
Normal file
23
src/n64dd/n64dd_error_textures.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
#include "ultra64.h"
|
||||
|
||||
#if PLATFORM_N64
|
||||
|
||||
u64 gN64DDError41Texs[2][0x600 / sizeof(u64)] = {
|
||||
{
|
||||
#include "assets/n64dd/error_textures/n64dd_error_41_jpn.i4.inc.c"
|
||||
},
|
||||
{
|
||||
#include "assets/n64dd/error_textures/n64dd_error_41_eng.i4.inc.c"
|
||||
},
|
||||
};
|
||||
|
||||
u64 gN64DDPleaseReadManualTexs[2][0x2800 / sizeof(u64)] = {
|
||||
{
|
||||
#include "assets/n64dd/error_textures/n64dd_please_read_manual_jpn.i4.inc.c"
|
||||
},
|
||||
{
|
||||
#include "assets/n64dd/error_textures/n64dd_please_read_manual_eng.i4.inc.c"
|
||||
},
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue