Mercurial > fife-parpg
view ext/UnitTest++/src/ReportAssert.cpp @ 263:10e0687a4cec
Fixed a bug in the OpenGl renderer where the last chunk of images would not be displayed when image_height % chunk_size was 0.
author | cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Thu, 11 Jun 2009 17:12:12 +0000 |
parents | 0d325e9d5953 |
children |
line wrap: on
line source
#include "AssertException.h" namespace UnitTest { void ReportAssert(char const* description, char const* filename, int const lineNumber) { throw AssertException(description, filename, lineNumber); } }