view mamba/constants.py @ 160:225214e2b1b4 scratch

Cleanup commit
author Neil Muller <drnlmuller@gmail.com>
date Tue, 13 Sep 2011 23:01:58 +0200
parents 6b9fa5e2fbc6
children 236de980209a
line wrap: on
line source

# Useful constants, as usual

SCREEN = (800, 600)

# Sound constants
SCREEN = (800, 600)
FREQ = 44100   # same as audio CD
BITSIZE = -16  # unsigned 16 bit
CHANNELS = 2   # 1 == mono, 2 == stereo
BUFFER = 1024  # audio buffer size in no. of samples