changeset 76:ae2c053ad80e

renamed images
author Rizmari Versfeld <rizziepit@gmail.com>
date Wed, 09 May 2012 00:14:38 +0200
parents ca0834578394
children 9ebce976a683
files data/images/button_main_down.png data/images/button_main_normal.png data/images/main_down.png data/images/main_normal.png gamelib/mainmenu.py
diffstat 5 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
Binary file data/images/button_main_down.png has changed
Binary file data/images/button_main_normal.png has changed
Binary file data/images/main_down.png has changed
Binary file data/images/main_normal.png has changed
--- a/gamelib/mainmenu.py	Wed May 09 00:11:06 2012 +0200
+++ b/gamelib/mainmenu.py	Wed May 09 00:14:38 2012 +0200
@@ -18,8 +18,8 @@
 class MainMenuButton(BigButton):
     WIDTH = 276
     HEIGHT = 75
-    BG_IMAGE_NORMAL = image.load(data.filepath('images/button_main_normal.png'))
-    BG_IMAGE_DOWN = image.load(data.filepath('images/button_main_down.png'))
+    BG_IMAGE_NORMAL = image.load(data.filepath('images/main_normal.png'))
+    BG_IMAGE_DOWN = image.load(data.filepath('images/main_down.png'))
 
 
 class NewGameButton(MainMenuButton):