Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@laptop.org>2007-12-11 22:59:58 (GMT)
committer C. Scott Ananian <cscott@laptop.org>2007-12-11 22:59:58 (GMT)
commit8b4053fed00857adf5aa7519ce3056b5f201663f (patch)
tree87d23c641cf638b75e6341bd6b811ebc194db192 /library
parenta0245db7e1aed1c816a9c7a9e47d03fc150b5fc8 (diff)
Dim to black on pause, not white.
Diffstat (limited to 'library')
-rw-r--r--library/pippy/game.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/pippy/game.py b/library/pippy/game.py
index f426c75..c3f6f65 100644
--- a/library/pippy/game.py
+++ b/library/pippy/game.py
@@ -14,7 +14,7 @@ def pause():
WHITE = (255,255,255)
dimmed = screen.copy()
dimmed.set_alpha(128)
- screen.fill(WHITE)
+ screen.fill(BLACK)
screen.blit(dimmed, (0,0))
font = pygame.font.Font(None, 36) # 36px high
msg = _("PAUSED")