From eef3a8756d0d31574fb4ff205193c679399dffa5 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Mon, 15 May 2023 01:14:59 -0400 Subject: [PATCH] black screen now returns to the dev menu instead of the title --- pocket_friends/_development/surfaces/_black_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pocket_friends/_development/surfaces/_black_screen.py b/pocket_friends/_development/surfaces/_black_screen.py index 8a0f1ad..329ce26 100644 --- a/pocket_friends/_development/surfaces/_black_screen.py +++ b/pocket_friends/_development/surfaces/_black_screen.py @@ -10,7 +10,7 @@ class Surface(surface.GameSurface): self.delay = 1 self.font = pygame.font.Font(resources_dir + '/fonts/5Pts5.ttf', 10) self.title = pygame.image.load(resources_dir + '/images/debug/invalid.png').convert_alpha() - self.next_surface = 'title' + self.next_surface = '_dev_menu' def update(self): self.preprocess()