Hello!
I tried to make a script that puts a splash screen before the title screen, and it works, except for one little detail. I can't seem to get it to skip to the title screen by pressing the specified button (C in this case)

. Some help would be appreciated.
Here is the script
CODE
class Scene_Splash < Scene_Base
def start
super
SceneManager.clear
Graphics.freeze
create_background
end
def create_background
@sprite = Sprite.new
@sprite.bitmap = Cache.picture("Untitled")
end
def update
if Input.press?(:C)
Graphics.fadeout(20)
SceneManager.call(Scene_Title)
else
Graphics.wait(320)
Graphics.fadeout(20)
SceneManager.call(Scene_Title)
end
end
def dispose_background
@sprite.bitmap.dispose
@sprite.dispose
end
end
module SceneManager
def self.first_scene_class
$BTEST ? Scene_Battle : Scene_Splash
end
end