Fix some win32 bugs.

This commit is contained in:
Pavel Krajcevski 2013-10-14 23:25:02 -04:00
parent 7ec457faa9
commit a9d8f4ca6e
2 changed files with 2 additions and 2 deletions

View file

@ -221,7 +221,7 @@ int _tmain(int argc, _TCHAR* argv[])
return 1; return 1;
} }
Image img (*file.GetImage()); FasTC::Image<> img (*file.GetImage());
if(format == eCompressionFormat_PVRTC) { if(format == eCompressionFormat_PVRTC) {
img.SetBlockStreamOrder(false); img.SetBlockStreamOrder(false);
} }

View file

@ -60,7 +60,7 @@
#include "ThreadSafeStreambuf.h" #include "ThreadSafeStreambuf.h"
#ifdef _MSC_VER #ifdef _MSC_VER
int _tmain(int argc, _TCHAR* argv[]) int _tmain(int argc, _TCHAR* argv[]) {
#else #else
int main(int argc, char **argv) { int main(int argc, char **argv) {
#endif #endif