diff mde/setup/paths.d @ 102:ba035eba07b4

Compilation fixes for windows and unittest code.
author Cyborg16@cyborg64-win.lan
date Sat, 22 Nov 2008 20:59:36 +0000
parents 71f0f1f83620
children 42e241e7be3e
line wrap: on
line diff
--- a/mde/setup/paths.d	Sun Nov 16 17:03:47 2008 +0000
+++ b/mde/setup/paths.d	Sat Nov 22 20:59:36 2008 +0000
@@ -280,7 +280,7 @@
     char[] getFontPath (char[] file) {
 	FilePath path = new FilePath (fontDir~file);
 	if (path.exists && !path.isFolder)
-	    return path.CString;
+	    return path.cString;
 	throw new NoFileException ("Unable to find font file: "~file);
     }