fixed dev menu not having proper background

This commit is contained in:
Nicholas Dyer 2023-05-15 00:28:20 -04:00
parent 8c49c62f66
commit 9669e6185d
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class Surface(surface.GameSurface):
self.game_fps = game_fps
self.delay = 1
self.font = pygame.font.Font(resources_dir + '/fonts/5Pts5.ttf', 10)
self.bg = pygame.image.load(self.resource_dir + '/images/dev_menu/dev_bg.png').convert_alpha()
self.background = pygame.image.load(self.resource_dir + '/images/dev_menu/dev_bg.png').convert_alpha()
functions = []
for key in dev_functions.keys():