diff dwt/dwthelper/utils.d @ 38:198549365851

Fixed all the runtime errors, hello world app "works"
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sun, 12 Oct 2008 15:26:21 +0200
parents 642f460a0908
children c74ba20de292
line wrap: on
line diff
--- a/dwt/dwthelper/utils.d	Fri Oct 10 12:29:48 2008 +0200
+++ b/dwt/dwthelper/utils.d	Sun Oct 12 15:26:21 2008 +0200
@@ -258,7 +258,8 @@
     public static float NEGATIVE_INFINITY = ((-1.0f) / 0.0f);
     public static float NaN = (0.0f / 0.0f);
     public static float MAX_VALUE = 3.4028235e+38f;
-    public static float MIN_VALUE = 1.4e-45f;
+    public static float MIN_VALUE = float.min;
+    //public static float MIN_VALUE = 1.4e-45f;    
     public static int SIZE = 32;
 
     this( float value ){