Title Screen mechanics

Completed patches for Keen2.
Post Reply
User avatar
XkyRauh
Posts: 1114
Joined: Sun Aug 31, 2003 9:14 pm
Location: San Diego, California

Title Screen mechanics

Post by XkyRauh »

As posted by Andy:

This patch changes the location at which the title screen bitmap is drawn:

For Keen 2:

Code: Select all

%ext ck2
%version 1.31

# The title bitmap will be shown at offset 0,0
%patch $9233   $00 $00     # Y location, in pixels
%patch $9237   $04 $00     # (X location in pixels) / 8 + 4

%end
and as added to by LevelLord:

#Press F1 for help sprite
%patch $9241 $01
#Don't show Press F1 sprite
%patch $924A $90

#Press F1 for help sprite y position
%patch $9245 $00
#Press F1 for help sprite x position
%patch $9249 $00

#Don't show F1 sprite or title bitmap
%patch $9259 $90

#Title bitmap disapears when menu is selected
%patch $9261 $90

#No menu, go straight to game
%patch $9270 $00
Post Reply