From 3761c62d864dfc42e163ad455d52bd989cd4b583 Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Tue, 3 Sep 2013 16:47:53 +0200 Subject: [PATCH] Spacing --- src/texpool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);