Actions

User

Difference between revisions of "Shadow05"

From Sonic Retro

Line 37: Line 37:
 
===Help Page===
 
===Help Page===
 
[http://forums.sonicretro.org/index.php?showtopic=38031 Link]
 
[http://forums.sonicretro.org/index.php?showtopic=38031 Link]
 +
 +
=A Few Fixes=
 +
==Death Egg Music Not Playing After Boss==
 +
===Fix===
 +
Goto '''''loc_39BA4''''' and you'll see this.
 +
<syntaxhighlight lang="asm"> move.b (Level_Music).w,d0</syntaxhighlight>
 +
Change the b to a w.
 +
===Cause===
 +
The Game is trying to read the RAM address as a byte instead of a word which makes it load Sound 00 which is nothing.

Revision as of 05:38, 10 June 2018

Sonic Megamix "V5.0B"

  • I actually have a rom of Sonic the Hedgehog Megamix V5.0B I won't post a link (because i'll probably get banned) but here's some screenshots.

WARNING:These will contain ALOT of spoilers!

Preferences Screen

Preferences Sonic Megamix V5.0.png

City Outskirts

Updated City Outskirts.png

Starry Night

Updated Starry Night.png

Metallic Base

Updated Metallic Base.png

Notes

  • The time attack menu music has a few additional notes sounding like birds.
  • Special Stages are very different as they are based off the Sonic CD
  • The build was leaked in mid-2011.
  • Stealth uploaded a video of a even later build.
  • Ending and Credits crashes (Credits doesn't in original mode).
  • Stealth refers to it as "V5.0a" (Version 5.0 Alpha)
  • City Outskirts CD theme reminds me of Studiopolis act 1.
  • Final Fight is Unfinished

Current Projects

  • Doomsday Zone Animation
  • Project:Sonic
  • Sonic 1 Enhanced Edition

Sonic 1 Enhanced Edition

  • SRAM Support (Selbi's Guide) Link
  • Title Screen Menu (with new game and continue options)
  • Sonic CD Style Camera (Nat The Porcupine's Guide)
  • Spindash
  • Sonic 3 Object and Ring Managers (SSRG)
  • Super Peelout and Sonic CD Sound Effects(From the Free Assets thread from SSRG)

Help Page

Link

A Few Fixes

Death Egg Music Not Playing After Boss

Fix

Goto loc_39BA4 and you'll see this.

	move.b	(Level_Music).w,d0

Change the b to a w.

Cause

The Game is trying to read the RAM address as a byte instead of a word which makes it load Sound 00 which is nothing.