Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit e9268bf

Browse files
committed
Adjust text bubble's Y position a little higher to avoid hiding tall portraits from view.
1 parent 1d44647 commit e9268bf

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

linkerscript

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,8 @@ SECTIONS
371371
.rodata.patch_tutorial_disabler_d752 : {*(.rodata.patch_tutorial_disabler_d752)}
372372
. = 0x8013318;
373373
.text.decodeTextInjector : {*(.text.decodeTextInjector)}
374+
. = 0x8009D28;
375+
.rodata.textBubblePositionYInDialogue : {*(.rodata.textBubblePositionYInDialogue)}
374376
. = 0x8017CE0;
375377
.rodata.pJobs1 : {*(.rodata.pJobs1)}
376378
. = 0x8018C1C;

src/text.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3139,3 +3139,5 @@ char *decodeTextInjector(int textID)
31393139
{
31403140
return decodeText(textID);
31413141
}
3142+
3143+
const char textBubblePositionYInDialogue = 5; // StartTalkOpen()

0 commit comments

Comments
 (0)