diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 01:40:11 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 01:40:11 -0500 |
commit | 44e92ce2596981c8d42b70922e5ae84d6b321ab1 (patch) | |
tree | cdbe34972f5cbce52f0446243c0262c0b7bf11a0 /src/record_mixing.c | |
parent | 199863f21f41b3a51d9a6302ca7c3c2864ee1c17 (diff) |
Give window drawing functions better names
Diffstat (limited to 'src/record_mixing.c')
-rw-r--r-- | src/record_mixing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/record_mixing.c b/src/record_mixing.c index 7f091c4df..2ac5f9e4c 100644 --- a/src/record_mixing.c +++ b/src/record_mixing.c @@ -292,7 +292,7 @@ static void ReceiveExchangePacket(u32 which) static void PrintTextOnRecordMixing(const u8 *src) { - NewMenuHelpers_DrawDialogueFrame(0, 0); + DrawDialogueFrame(0, 0); AddTextPrinterParameterized(0, 1, src, 0, 1, 0, NULL); CopyWindowToVram(0, 3); } @@ -370,7 +370,7 @@ static void Task_RecordMixing_Main(u8 taskId) { CreateTask(sub_80AF2B4, 10); } - ClearWindowAndWideBorder(0, 1); + ClearDialogWindowAndFrame(0, 1); DestroyTask(taskId); EnableBothScriptContexts(); } |