From 004d5adf7bef6f20e05b5df6a7b76eceeb9c620c Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 29 Jan 2019 07:45:07 +0000 Subject: [PATCH] Correct typo in gMC.equip assignment Fixes #29 --- src/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Game.cpp b/src/Game.cpp index f0da9a46..9d169d54 100644 --- a/src/Game.cpp +++ b/src/Game.cpp @@ -284,7 +284,7 @@ int ModeTitle() //Reset cliprect, flags, and give the player the nikumaru counter grcGame.left = 0; g_GameFlags = 0; - gMC.equip & 0x100; + gMC.equip |= 0x100; //Start loop int wait = 0;