Cleaned up fgOpenWindow():
authorRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 06:11:25 +0000 (06:11 +0000)
committerRichard Rauch <rkr@olib.org>
Fri, 31 Oct 2003 06:11:25 +0000 (06:11 +0000)
commit2cf5907afe7e631b9112031f30ed84c5fc527d5f
tree2a62bd96a7fb7bde739df899e29d094d3e89db9c
parentc3346073ddffc31ca77caba5a77507b867ff5fa4
Cleaned up fgOpenWindow():
 * Removed TABs.
 * Made indentation consistant.
 * Deleted say-nothing-new comments.
 * Changed an *error*check* from an assert to an if().
   (The error-check was on window creation; we don't want to
    lose that if the user compiles with asserts deactivated.
    Also, assert()s really tell us more about programming errors,
    rather than run-time errors, so it is a little misleading to
    use assert() for error-checks, even if you can depend upon
    assert()s never being compiled away to null statements.)
 * Added some XXX comments for things that bear some rumination.

git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@275 7f0cb862-5218-0410-a997-914c9d46530a
src/freeglut_window.c