diff --git a/src/texpool.cpp b/src/texpool.cpp index 072a64e..149af2b 100644 --- a/src/texpool.cpp +++ b/src/texpool.cpp @@ -127,8 +127,8 @@ TexFBO TexPool::request(int width, int height) int maxSize = glState.caps.maxTexSize; if (width > maxSize || height > maxSize) throw Exception(Exception::MKXPError, - "Texture dimensions [%s, %s] exceed hardware capabilities", - QByteArray::number(width), QByteArray::number(height)); + "Texture dimensions [%s, %s] exceed hardware capabilities", + QByteArray::number(width), QByteArray::number(height)); /* Nope, create it instead */ TexFBO::init(cobj.obj);