comparison gamelib/constants.py @ 61:a253fae32a6f

Add no-sound option (slow shutdown bug workaround)
author Neil Muller <drnlmuller@gmail.com>
date Tue, 08 May 2012 16:27:44 +0200
parents a2980cc9a060
children a40a76012bd7
comparison
equal deleted inserted replaced
60:f9d2ba74723d 61:a253fae32a6f
2 2
3 WIDTH = 800 3 WIDTH = 800
4 HEIGHT = 600 4 HEIGHT = 600
5 SCREEN = (WIDTH, HEIGHT) 5 SCREEN = (WIDTH, HEIGHT)
6 FPS = 30 6 FPS = 30
7
8 # Sound related (standard options)
9 FREQ = 44100
10 BITSIZE = -16 # unsigned 16 bit
11 CHANNELS = 2
12 BUFFER = 1024