From 660d27d73803152961a9ad6074c92874583c36ec Mon Sep 17 00:00:00 2001 From: nutbuster Date: Sun, 17 Oct 2021 19:33:05 +1100 Subject: [PATCH] Limit saves to 9 instead of inf --- game/screens.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/screens.rpy b/game/screens.rpy index 813c71e..3712abd 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -860,7 +860,7 @@ screen file_slots(title, flag=False): for page in range(1, 10): textbutton "[page]" activate_sound "audio/ui/uiClick.wav" action FilePage(page) - textbutton _(">") activate_sound "audio/ui/uiRollover.wav" action FilePageNext() + textbutton _(">") activate_sound "audio/ui/uiRollover.wav" action FilePageNext(max=9) style page_label is gui_label