From 9f6e6e723345365407a237866b83dfadfb2f43d3 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 12 Sep 2013 14:32:33 -0400 Subject: [PATCH] Fix bug with debug images --- PVRTCEncoder/src/Image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVRTCEncoder/src/Image.cpp b/PVRTCEncoder/src/Image.cpp index 4108340..d63b084 100644 --- a/PVRTCEncoder/src/Image.cpp +++ b/PVRTCEncoder/src/Image.cpp @@ -308,7 +308,7 @@ void Image::DebugOutput(const char *filename) const { } } - ::Image img(m_Height, m_Width, outPixels); + ::Image img(m_Width, m_Height, outPixels); char debugFilename[256]; snprintf(debugFilename, sizeof(debugFilename), "%s.png", filename);