

Join the discussion
Write your take first — we'll ask for email only when you're ready to publish.
- Hacker News
- Now imagine it's not an easter egg, it's zero day.by firefax
- Oh, no. Someone hacked into my Sega CD and??? I’m not aware of anything nefarious that could be done here.
- I’d love to know how the author found this!
I mean, who reverse engineers the “About” dialog on an application!?!? That’s the last place I would have ever looked!
by BobbyTables2 - Well, the About dialog is one of the more popular places to put easter eggsby adzm
- Well, I knew from looking at a previous game that this development team liked to put Easter eggs on the About menu. That's why I looked there first!
https://32bits.substack.com/p/under-the-microscope-three-dir...
by bbayles - Not the author but:
`GetKeyState` and `LoadMenuA` are going to stand out in the disassembly.
Backtracking from `GetKeyState` is how I found a devmode in "warhammer: shadow of the horned rat". Though it is activated by a boring commandline argument.
https://www.gog.com/forum/warhammer_shadow_of_the_horned_rat...
by aqrit - I never heard about it. Is it a good game?by hoppp
- That’s super cool! I loved the original Ecco on the genesis. Beat it several times. I miss when games had real cheats/debug modes. It’s part of the reason I hot in to programming and development in the first place. I feel like kids these days don’t get this experience anymore.by Jzush
- Young me would have loved to know that there was a cheat code in Ecco for the Mega Drive... I loved the vibes of the game but could never get far.by zorked
- You beat I *several* times?
I wanted to love this game and it's beautiful animations and art styles and music. But I think I never got past the actual first level.
I remember already having a lot of trouble triggering the storm and then just got confused in the first level with the big crystals and the maze. It got me really frustrated.
by 7bit - This sort of thing seems to have really fallen off after the Grand Theft Auto "Hot Coffee" scandal. Having hidden stuff in a game went from being a fun thing to a potential liability.by bbayles
- The fun ones are the studios who are really good at stubbing debug stuff out. Guitar Hero II for PS2 was released in November 2006. it took 14 and a half years before someone stumbled on a prototype GH80s disc that just happened to be a debug-enabled build of the game, that also just happened to contain a debug-enabled executable for GH2 sitting in the root of the disc (which kind of makes sense, GH80s was a slightly modified and bugfixed version of GH2, so earlier versions of GH80s were probably built as GH2 discs before the executable was finalized). But there are certain key routines in GH2 that are completely stubbed out in the retail builds, such as the routines to read USB keyboard input, or display the actual debug traces. They're present by name, and the rest of the code will call them when needed, but then they just return without doing anything (and thus if a true exception was thrown the game will then halt in retail versions where the debug version would print a data and code stack trace before halting). Harmonix did this continuously throughout Rock Band development as well, even as far as stubbing out routines only needed on a single platform unless the build is for that platform (Rock Band 3 on PS3 makes use of the hdd1: cache, but all code for that is completely stubbed out with return-only funcs in the 360 build). We wouldn't have any knowledge of Rock Band 3 debug if it weren't for a dev Wii we found with five builds of RB3 (including a slightly post-final build, but all debug-enabled).
But then they were sloppy enough to use the 360-based audio encryption path (which had an extra step versus the PS3) on later non-360 consoles and include the needed HvKeys to decrypt the keymask in cleartext, even though they could have successfully decrypted every single audio file that wasn't RB1 on-disc or early DLC by using the PS3 path and not revealing those keys. I don't care about public discussion of this at this point because there are a dozen tools that can decrypt every single Rock Band audio file ever created (and even audio for games that aren't RB but used "mogg" format which is just multichannel Ogg Vorbis with a Harmonix-specific header with security values and an OggMap to aid in seeking). There's even one tool that can decrypt audio that uses the "red" keys which have never been seen to be used publicly. Game dev is fun.
If you've ever heard of Guitar Hero II Deluxe, that debug ELF made that possible. Also if you've played it, you're welcome.
by LocalH - > CD check gets rid of the This program can only be run from the original CD! nag screen.
A built-in no-cd patch, neat :-)
by _def