Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/game/PresentationState.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2013-09-10 05:39:29 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2013-09-10 05:39:29 (GMT)
commit472449fbe8d5f97816227ad44fd97d8f85319b4e (patch)
treecff9eb8de796af232b7018eeecee753f65ad0e25 /src/game/PresentationState.py
parent1999a491d4c6a7d93fb595b1081e8d11bd6bbbc4 (diff)
remove old direct buttons
Diffstat (limited to 'src/game/PresentationState.py')
-rw-r--r--src/game/PresentationState.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/game/PresentationState.py b/src/game/PresentationState.py
index 7a22024..b4336d7 100644
--- a/src/game/PresentationState.py
+++ b/src/game/PresentationState.py
@@ -2,7 +2,7 @@
from api.GameState import CGameState
from api.Game import CGame
-from game.CreditsState import CCreditsState
+from game.SelectPartidaState import CSelectPartidaState
from api.Sprite2 import CSprite
import api.Image as Image
@@ -45,9 +45,8 @@ class CPresentationState(CGameState):
if self.mCount > 150:
print "clicked credits"
- #cs = CHelpState()
- cs = CCreditsState()
- CGame().setState(cs)
+ partida = CSelectPartidaState()
+ CGame().setState(partida)
return
def destroy(self):