Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/global_patches/surprise_pack_patch.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RECOMP_PATCH void func_080009F4_6AF1D4(Entity *entity, ParameterStruct *param) {

// Get the item name
char item_name[33];
rando_get_item_name_from_id(item_id, item_name);
rando_get_location_item_name(location_id, item_name);

recomp_printf("Item at location %d: 0x%08X (%s)\n", location_id, item_id, item_name);
// If item_name is empty, use "BROKEN ITEM (DEV)"
Expand Down
2 changes: 1 addition & 1 deletion src/global_patches/turtle_rock.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ RECOMP_PATCH void func_08000060_725C90(GINNEKO_TASK_W *ginneko, CLS_BG_W *obj) {

// Get the item name
char item_name[33];
rando_get_item_name_from_id(item_id, item_name);
rando_get_location_item_name(location_id, item_name);

DEBUG_PRINTF("Item at location %d: 0x%08X (%s)\n", location_id, item_id, item_name);

Expand Down
2 changes: 1 addition & 1 deletion src/scenario_scripts/scenario_replacer.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void update_text_buffer_with_ap_location(s16 *text_buffer, s32 flag_id, const ch

// Get the item name
char item_name[33];
rando_get_item_name_from_id(item_id, item_name);
rando_get_location_item_name(ap_location_id, item_name);

recomp_printf("Item at location %d: 0x%08X (%s)\n", ap_location_id, item_id, item_name);

Expand Down