summaryrefslogtreecommitdiff
path: root/src/scene/intro.c
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2017-11-05 23:07:39 -0500
committerProjectRevoTPP <projectrevotpp@hotmail.com>2017-11-05 23:07:39 -0500
commit618240c62639bc4da73d400965b6df67b2c3619e (patch)
tree4dca7115eac299f045db3984290f69783fa27801 /src/scene/intro.c
parentce1d3a195f1ccce4d49cb37bb6b7c4679698c538 (diff)
move src/engine/ direct ewram calls to ewram.h.
Diffstat (limited to 'src/scene/intro.c')
-rw-r--r--src/scene/intro.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/scene/intro.c b/src/scene/intro.c
index a6dd23c92..af9b565a3 100644
--- a/src/scene/intro.c
+++ b/src/scene/intro.c
@@ -1207,7 +1207,7 @@ static void Task_IntroWaitToSetupPart3DoubleFight(u8 taskId)
gTasks[taskId].func = Task_IntroLoadPart3Streaks;
}
-extern u8 unk_2000000[][32];
+extern u8 ewram[][32];
static void Task_IntroLoadPart3Streaks(u8 taskId)
{
@@ -1217,12 +1217,12 @@ static void Task_IntroLoadPart3Streaks(u8 taskId)
intro_reset_and_hide_bgs();
for (i = 0; i < 32; i++)
{
- unk_2000000[0][i] = 0;
- unk_2000000[1][i] = 17;
- unk_2000000[2][i] = 34;
+ ewram[0][i] = 0;
+ ewram[1][i] = 17;
+ ewram[2][i] = 34;
}
vram = (void *)VRAM;
- DmaCopy16(3, unk_2000000, vram, 0x60);
+ DmaCopy16(3, ewram, vram, 0x60);
for (i = 0; i < 0x280; i++)
((u16 *)(VRAM + 0x3000))[i] = 0xF001;
for (i = 0; i < 0x80; i++)