Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/physics.py
diff options
context:
space:
mode:
authorBrian Jordan <brian@laptop.org>2008-07-18 16:43:01 (GMT)
committer Brian Jordan <brian@laptop.org>2008-07-18 16:43:01 (GMT)
commitdd6761a5e4c29667725cb5298b3db32ac25280c2 (patch)
treee3f90684543c95422ec2a924573752ec97b90227 /physics.py
parent4f0083f24f608bf4627fdf0fd8629833116691db (diff)
White background
Diffstat (limited to 'physics.py')
-rw-r--r--physics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/physics.py b/physics.py
index 769de46..9d84665 100644
--- a/physics.py
+++ b/physics.py
@@ -52,7 +52,7 @@ class PhysicsGame:
for event in pygame.event.get():
self.currentTool.handleEvents(event)
# Clear Display
- self.screen.fill((0,0,0)) #255 for white
+ self.screen.fill((255,255,255)) #255 for white
# Update & Draw World
self.world.update()