diff --git a/src/sj/SelectScene.d b/src/sj/SelectScene.d index 5686f0d..a12205a 100644 --- a/src/sj/SelectScene.d +++ b/src/sj/SelectScene.d @@ -79,7 +79,7 @@ class SelectScene : SceneInterface { } override SceneInterface Update(KeyInput input) { SceneInterface next_scene = this; - AbstractSceneState next_state; + AbstractSceneState next_state = status_; status_.Update(input).visit!( (SceneInterface scene) { next_scene = scene; },