[pypy-svn] r36410 - pypy/dist/pypy/translator/tool/pygame
arigo at codespeak.net
arigo at codespeak.net
Wed Jan 10 16:18:57 CET 2007
Author: arigo
Date: Wed Jan 10 16:18:56 2007
New Revision: 36410
Modified:
pypy/dist/pypy/translator/tool/pygame/graphdisplay.py
Log:
Adapt the initial ANIM_STEP to machines that are faster than my old laptop.
Modified: pypy/dist/pypy/translator/tool/pygame/graphdisplay.py
==============================================================================
--- pypy/dist/pypy/translator/tool/pygame/graphdisplay.py (original)
+++ pypy/dist/pypy/translator/tool/pygame/graphdisplay.py Wed Jan 10 16:18:56 2007
@@ -60,7 +60,7 @@
class GraphDisplay(Display):
STATUSBARFONT = FIXEDFONT
- ANIM_STEP = 0.07
+ ANIM_STEP = 0.03
KEY_REPEAT = (500, 30)
STATUSBAR_ALPHA = 0.75
STATUSBAR_FGCOLOR = (255, 255, 80)
More information about the Pypy-commit
mailing list