Skip the initialization (Ready. Press any key) screen

Completed patches for Keen4.
Post Reply
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Skip the initialization (Ready. Press any key) screen

Post by levellass »

This patch completely skips the first game screen, the purple and blue affair that displays the input devices and game memory. The screen is simply black, then the 'COMMANDER KEEN' sequence begins. This is useful as it means you don't need to patch a new screen. See also: http://www.shikadi.net/keenwiki/Patch:B800_text_screens

Code: Select all

#Skip initialization screen
%patch $38AD  $90 $90 $90 $90 $90 #Don't load B800
%patch $38D0  $90 $90 $90 $90 $90 #Don't display game info
%patch $19F40 $90 $90 $90         #Don't show 'Loading...' text
%patch $19FA6 $90 $90 $90         #Don't show 'Ready' text
%patch $39B2 $90 $90 $90 $90 $90  #Don't wait for key
Post Reply