polyhedron debug output had indices reversed

master
Marius Kintel 2015-01-05 13:38:26 -05:00
parent d0cee28898
commit 1a1f36035d
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ namespace /* anonymous */ {
#ifdef GEN_SURFACE_DEBUG
printf("[");
int fidx = 0;
BOOST_FOREACH(size_t i, indices) {
BOOST_REVERSE_FOREACH(size_t i, indices) {
if (fidx++ > 0) printf(",");
printf("%ld", i);
}