diff mde/scheduler/Init.d @ 56:f9f5e04f20b2

Bit of polish for a public release, including some more documentation.
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 14 Jun 2008 12:04:25 +0100
parents f3d8c0441408
children
line wrap: on
line diff
--- a/mde/scheduler/Init.d	Tue Jun 10 17:35:13 2008 +0100
+++ b/mde/scheduler/Init.d	Sat Jun 14 12:04:25 2008 +0100
@@ -50,7 +50,7 @@
 // Derelict imports
 import derelict.opengl.gl;
 import derelict.sdl.sdl;
-import derelict.sdl.image;
+//import derelict.sdl.image;	Was to be used... for now isn't
 import derelict.freetype.ft;
 import derelict.util.exception;
 
@@ -208,7 +208,8 @@
         * Also means that init functions aren't run if a library fails to load. */
         try {
             DerelictSDL.load();
-            DerelictSDLImage.load();
+            // SDLImage was going to be used... for now it isn't because of gl texturing problems
+            //DerelictSDLImage.load();
             DerelictGL.load();
             DerelictFT.load();
         } catch (DerelictException de) {