mirror of https://github.com/adamdruppe/arsd.git
ketmar typo
This commit is contained in:
parent
e22ed09eff
commit
c5a62eb725
2
image.d
2
image.d
|
@ -158,7 +158,7 @@ public MemoryImage loadImageFromFile(T:const(char)[]) (T filename) {
|
|||
case ImageFileFormat.Bmp: static if (is(T == string)) return readBmp(filename); else return readBmp(filename.idup);
|
||||
case ImageFileFormat.Jpeg: return readJpeg(filename);
|
||||
case ImageFileFormat.Gif: throw new Exception("arsd has no GIF loader yet");
|
||||
case ImageFileFormat.Tga: import std.stdio; return loadTga(File(filename));
|
||||
case ImageFileFormat.Tga: return loadTga(filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue