X-Git-Url: https://git.ucc.asn.au/?p=progcomp2013.git;a=blobdiff_plain;f=qchess%2Fqchess.py;fp=qchess%2Fqchess.py;h=5883ca53dedf76ac69b2ce98643e23883ba9be5e;hp=8deeddb3cc0c5991a8dfddd7c524c43002a5d6a9;hb=545652c966aa156faa9301a709dc9ad565df4c9b;hpb=7518ec8d771e731d6ffbbe00b275b7e3c4b23301 diff --git a/qchess/qchess.py b/qchess/qchess.py index 8deeddb..5883ca5 100755 --- a/qchess/qchess.py +++ b/qchess/qchess.py @@ -1874,8 +1874,10 @@ def load_images(image_dir=os.path.join(os.path.curdir, "data", "images")): small_images[c].update({p : pygame.image.load(os.path.join(image_dir, c + "_" + p + "_small.png"))}) # --- images.py --- # graphics_enabled = True + try: import pygame + os.environ["SDL_VIDEO_ALLOW_SCREENSAVER"] = "1" except: graphics_enabled = False @@ -1907,7 +1909,7 @@ class GraphicsThread(StoppableThread): pygame.font.Font(os.path.join(os.path.curdir, "data", "DejaVuSans.ttf"), 32).render("Hello", True,(0,0,0)) #load_images() - load_images() + create_images(grid_sz) """ for c in images.keys(): @@ -2631,4 +2633,4 @@ if __name__ == "__main__": sys.exit(102) # --- main.py --- # -# EOF - created from make on Thu Mar 21 12:27:36 WST 2013 +# EOF - created from make on Sat Mar 23 12:55:44 WST 2013