ketmar typo

This commit is contained in:
Adam D. Ruppe 2017-05-13 23:08:36 -04:00
parent e22ed09eff
commit c5a62eb725
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}