summaryrefslogtreecommitdiff
path: root/src/wallclock.c
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2017-05-09 19:08:23 -0400
committerProjectRevoTPP <projectrevotpp@hotmail.com>2017-05-09 19:08:23 -0400
commitc10de4945141a6cca8c1b7328f4102bfc2c8ae28 (patch)
tree6ae5a6428c1ac5f33004e5bf57af3bb31e2338fd /src/wallclock.c
parentfc761599b412206f80d961a6052dce49b9998689 (diff)
parentc0c3d2c52ad839450041d1ca6a29691efc5c5d35 (diff)
Merge branch 'master' of https://github.com/pret/pokeruby
Diffstat (limited to 'src/wallclock.c')
-rw-r--r--src/wallclock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallclock.c b/src/wallclock.c
index 2f4d694a6..0f3665c65 100644
--- a/src/wallclock.c
+++ b/src/wallclock.c
@@ -256,8 +256,8 @@ static void WallClockInit(void)
REG_BLDCNT = 0;
REG_BLDALPHA = 0;
REG_BLDY = 0;
- REG_BG3CNT = 0x701;
- REG_BG0CNT = 0x1F08;
+ REG_BG3CNT = BGCNT_PRIORITY(1) | BGCNT_CHARBASE(0) | BGCNT_SCREENBASE(7) | BGCNT_16COLOR | BGCNT_TXT256x256;
+ REG_BG0CNT = BGCNT_PRIORITY(0) | BGCNT_CHARBASE(2) | BGCNT_SCREENBASE(31) | BGCNT_16COLOR | BGCNT_TXT256x256;
REG_DISPCNT = DISPCNT_MODE_0 | DISPCNT_OBJ_1D_MAP | DISPCNT_BG0_ON |
DISPCNT_BG3_ON | DISPCNT_OBJ_ON;
}