Actions

SCHG How-to

Difference between revisions of "Fix Minor Bugs in Sonic 2"

From Sonic Retro

(WIP)
 
(No difference)

Latest revision as of 07:01, 20 March 2019

(Fixes by Shadow05) This guide focuses on bugs too minor for their own pages.

DEZ music not playing after Mecha Sonic

Fix

At loc_39BA4, you'll see these lines.

	move.b	(Level_Music).w,d0
	jsrto	(PlayMusic).l, JmpTo5_PlayMusic

Change the move.b to a move.w.

Bug Explained

Because the game is reading it as a byte, all it does it try to play Sound $00, as $00 is blank, nothing happens.

Unlimited Speed Shoes in 2P

Fix