diff options
-rw-r--r-- | game/mirrorlake.rpy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/game/mirrorlake.rpy b/game/mirrorlake.rpy index f6d62c6..de0f27f 100644 --- a/game/mirrorlake.rpy +++ b/game/mirrorlake.rpy @@ -32,6 +32,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("{b}The Void{/b}"): color "#F2F" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 @@ -46,6 +47,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("%s" % srv["Name"]): color "#FFF" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 button: @@ -57,6 +59,7 @@ screen mirrorlake(): add Frame("gui/button/choice_hover_background.png", 0, 0) text _("Quit"): color "#FFF" + hover_outlines [(absolute(1), "#000", absolute(0), absolute(0))] xalign 0.5 yalign 0.5 |