From: Rudolf Polzer Date: Fri, 30 Jul 2010 14:11:33 +0000 (+0200) Subject: display entity boxes as [/]. Second line not needed. X-Git-Tag: xonotic-v0.5.0~242 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=71271751d15243b8ff39aadab226448229e0a670;p=xonotic%2Fnetradiant.git display entity boxes as [/]. Second line not needed. --- diff --git a/libs/entitylib.h b/libs/entitylib.h index 2612ac2b..667adf72 100644 --- a/libs/entitylib.h +++ b/libs/entitylib.h @@ -104,11 +104,12 @@ inline void aabb_testselect(const AABB& aabb, SelectionTest& test, SelectionInte inline void aabb_draw_wire(const Vector3 points[8]) { - unsigned int indices[32] = { + unsigned int indices[26] = { 0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7, - 0, 6, 1, 7, 2, 4, 3, 5 // X cross + // 0, 6, 1, 7, 2, 4, 3, 5 // X cross + 1, 7 // diagonal line (connect mins to maxs corner) }; #if 1 glVertexPointer(3, GL_FLOAT, 0, points);