From 9564a1ab606ffcf28af258cafcb8f7ceff614720 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Tue, 18 Sep 2018 20:50:58 -0700 Subject: [PATCH] GB I/O: Fix PCM12/34 register numbers --- include/mgba/internal/gb/io.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mgba/internal/gb/io.h b/include/mgba/internal/gb/io.h index 95afebe0f..15172ff0f 100644 --- a/include/mgba/internal/gb/io.h +++ b/include/mgba/internal/gb/io.h @@ -102,9 +102,9 @@ enum GBIORegisters { REG_UNK72 = 0x72, REG_UNK73 = 0x73, REG_UNK74 = 0x74, - REG_PCM12 = 0x75, - REG_PCM34 = 0x76, - REG_UNK77 = 0x77, + REG_UNK75 = 0x75, + REG_PCM12 = 0x76, + REG_PCM34 = 0x77, REG_MAX = 0x100 };