Hi,
At line 214 (infinite loop):
for (int j=0;j<vertexDataStep;j) {
should be:
for (int j=0;j<vertexDataStep;++j) {
;)
Cheers.
Quite right Cedric, the SVN trunk is fixed.
Thank you for the bug report.
Okan
Log in to post a comment.
Hi,
At line 214 (infinite loop):
for (int j=0;j<vertexDataStep;j) {
should be:
for (int j=0;j<vertexDataStep;++j) {
;)
Cheers.
Quite right Cedric, the SVN trunk is fixed.
Thank you for the bug report.
Okan