dont init sound

albatross
Harald Schafer 2020-07-31 13:11:59 -07:00
parent 1d7f4bc3b1
commit 0a01d88139
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Window():
def __init__(self, w, h, caption="window", double=False):
self.w = w
self.h = h
pygame.init()
pygame.display.init()
pygame.display.set_caption(caption)
self.double = double
if self.double: