Merge pull request #43 from ZappoMan/view_frustum_work

improved the menu states names for frustum rendering modes
This commit is contained in:
Philip Rosedale 2013-04-13 16:03:25 -07:00
commit 531e294052

View file

@ -982,11 +982,11 @@ int setFrustumRenderMode(int state) {
return ::frustumDrawingMode;
}
const char* modeAll = " All\0";
const char* modeVectors = " Vector\0";
const char* modePlanes = " Planes\0";
const char* modeNear = " Near\0";
const char* modeFar = " Far\0";
const char* modeAll = " - All ";
const char* modeVectors = " - Vectors ";
const char* modePlanes = " - Planes ";
const char* modeNear = " - Near ";
const char* modeFar = " - Far ";
const char* getFrustumRenderModeName(int state) {
const char * mode;