From ace856c6b71e44b4d3b3366a8e12a1bbcb4de021 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Thu, 26 Jan 2006 15:57:20 +0000 Subject: [PATCH] deleted a small bug --- src/test/io/export_3ds.h | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/test/io/export_3ds.h b/src/test/io/export_3ds.h index e8a7fab55..f3e9da57b 100644 --- a/src/test/io/export_3ds.h +++ b/src/test/io/export_3ds.h @@ -25,6 +25,9 @@ History $Log$ + Revision 1.30 2006/01/26 15:57:20 fmazzant + deleted a small bug + Revision 1.29 2006/01/26 15:48:49 fmazzant added control on the maximum number of vertices allowed by the 3DS file format @@ -121,16 +124,16 @@ namespace io { { static const char* obj_error_msg[] = { - "No errors", // 0 - "Can't open file", // 1 - "can't close file", // 2 - "Premature End of file", // 3 - "File saving aborted", // 4 - "Function not defined", // 5 - "Vertices not valid", // 6 - "Faces not valid" // 7 - "Texture Coord not valid", // 8 - "You cannot save more than 65535 vertices" // 9 + "No errors", // 0 + "Can't open file", // 1 + "can't close file", // 2 + "Premature End of file", // 3 + "File saving aborted", // 4 + "Function not defined", // 5 + "Vertices not valid", // 6 + "Faces not valid", // 7 + "Texture Coord not valid", // 8 + "You cannot save more than 65535 vertices for the 3DS format" // 9 }; if(error>9 || error<0) return "Unknown error";