changeset 26:a77be3e27f39

fix macos version
author Stephan Dilly <stephan@extrawurst.org>
date Mon, 13 Dec 2010 15:32:42 +0100
parents 5497d518b428
children b45f0b140d85
files trunk/tests/ChipmunkDemos/gameApp.d
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/tests/ChipmunkDemos/gameApp.d	Mon Dec 13 02:31:53 2010 +0100
+++ b/trunk/tests/ChipmunkDemos/gameApp.d	Mon Dec 13 15:32:42 2010 +0100
@@ -33,6 +33,7 @@
 import samples.Pump;
 import samples.TheoJansen;
 import samples.UnsafeOps;
+import samples.Nukeit;
 
 // using derelict bindings for sdl/opengl
 import derelict.opengl.gl;
@@ -42,7 +43,7 @@
 import std.stdio;
 import core.thread;
 
-//version = TIME_TRIAL;
+version = TIME_TRIAL;
 
 cpVect			mousePos;
 cpVect			arrowDirection;
@@ -109,7 +110,7 @@
 
 		demos = [
 			&LogoSmash,
-			&Simple,
+			//&Simple,
 			&PyramidStack,
 			&Plink,
 			&Tumble,
@@ -135,7 +136,7 @@
 		
 version(TIME_TRIAL)
 {
-		Thread.sleep(1_000_000); //1s
+		Thread.sleep(2_000_000);
 		ulong duration;
 		foreach(i; 0..demos.length)
 		{