diff options
-rw-r--r-- | game/core.rpy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/core.rpy b/game/core.rpy index c23bb90..a6320c3 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -222,7 +222,7 @@ init 10 python: ######### Done with pre-init label splashscreen: - show TMW2 at truecenter with fade + show TMW2 at truecenter with None #fade python: if persistent.hello is None: p1=2.5 @@ -231,7 +231,7 @@ label splashscreen: p1=0.5 p2=0.5 renpy.pause(p1) - hide TMW2 with Dissolve(p2) + hide TMW2 with None #Dissolve(p2) call before_main_menu if persistent.hello is None: call screen preferences |