mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 11:03:46 +00:00
handle hackmode_syotes_room, fix compile
This commit is contained in:
parent
b952b2db1e
commit
43d93c112b
2 changed files with 4 additions and 3 deletions
|
@ -27,6 +27,8 @@ ActorProfile En_Jsjutan_Profile = {
|
|||
};
|
||||
|
||||
// Shadow texture. 32x64 I8.
|
||||
#define sShadowTex_WIDTH 32
|
||||
#define sShadowTex_HEIGHT 64
|
||||
static u8 sShadowTex[0x800];
|
||||
|
||||
static Vec3s D_80A8EE10[0x90];
|
||||
|
|
|
@ -23,6 +23,7 @@ from .extase_oot64 import (
|
|||
scene_rooms_resources,
|
||||
scene_commands_resource,
|
||||
skelanime_legacy_resources,
|
||||
room_shape_resources,
|
||||
)
|
||||
|
||||
|
||||
|
@ -391,11 +392,9 @@ def register_resource_handlers():
|
|||
resource_desc: z64resources.RoomResourceDesc,
|
||||
):
|
||||
if "hackmode_syotes_room" in resource_desc.hack_modes:
|
||||
# TODO
|
||||
return BinaryBlobResource(
|
||||
return room_shape_resources.RoomShapeNormalResource(
|
||||
file,
|
||||
resource_desc.offset,
|
||||
resource_desc.offset + 4,
|
||||
resource_desc.symbol_name,
|
||||
)
|
||||
return scene_commands_resource.SceneCommandsResource(
|
||||
|
|
Loading…
Add table
Reference in a new issue