diff options
author | Brian Paul <[email protected]> | 2010-05-04 13:01:09 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-04 17:17:04 -0600 |
commit | 2649d64fee6f67f0bdb1630869d82baa1636fca2 (patch) | |
tree | 0e0a7a6fd51b5f08d7194e0a90bb5bf45bf6d787 /progs/demos | |
parent | 6a191b2713d0670f65d489cf947261fe36c5ee89 (diff) |
progs/demos: set line width back to 1.0 in DrawBox()
Diffstat (limited to 'progs/demos')
-rw-r--r-- | progs/demos/engine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/demos/engine.c b/progs/demos/engine.c index a4148357d49..ee7d5c154a9 100644 --- a/progs/demos/engine.c +++ b/progs/demos/engine.c @@ -832,6 +832,7 @@ DrawBox(void) glDisable(GL_LIGHTING); glDisable(GL_TEXTURE_2D); + glLineWidth(1.0); glColor3f(1, 1, 1); |