summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorkiliwily <69381603+kiliwily@users.noreply.github.com>2020-09-12 18:52:00 +0200
committerkiliwily <69381603+kiliwily@users.noreply.github.com>2020-09-12 18:52:00 +0200
commitf84702e50bc57549c76500f7394500baadd61501 (patch)
treec2a3572eb46bd150e624221b8d420d8169dd4996 /docs
parent4c4c2ea41bf6841753002f2fd6f527a4fecc363d (diff)
Update bugs_and_glitches.md
Diffstat (limited to 'docs')
-rw-r--r--docs/bugs_and_glitches.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md
index 9f80992d2..fc993e678 100644
--- a/docs/bugs_and_glitches.md
+++ b/docs/bugs_and_glitches.md
@@ -47,15 +47,15 @@ And edit `AgbMain`:
```diff
void CB2_InitTitleScreen(void)
{
- switch (gMain.state)
- {
- default:
- case 0:
- SetVBlankCallback(NULL);
-+ StartTimer1();
- SetGpuReg(REG_OFFSET_BLDCNT, 0);
- SetGpuReg(REG_OFFSET_BLDALPHA, 0);
- SetGpuReg(REG_OFFSET_BLDY, 0);
+ switch (gMain.state)
+ {
+ default:
+ case 0:
+ SetVBlankCallback(NULL);
++ StartTimer1();
+ SetGpuReg(REG_OFFSET_BLDCNT, 0);
+ SetGpuReg(REG_OFFSET_BLDALPHA, 0);
+ SetGpuReg(REG_OFFSET_BLDY, 0);
...
```
That matches the code of FR/LG and does what GF originally wanted to do.