diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-02-18 18:20:50 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-02-18 18:22:23 +0000 |
commit | defd52f6c75ad1f714ce90f5763ec8a4d48dd773 (patch) | |
tree | 7f095533e7d952942bfbe74e546a74d6a801e940 /progs/trivial/tri-square.c | |
parent | 056f847e96aa84c1e7c9ee7ce60f4d7f7603676b (diff) |
progs/trivial: Label program windows with actual program name
Each of these programs previously called itself "First Tri" which was a
little confusing. Could have left one as "First Tri", but the trouble
then is that people would still clone that file & we'd end up with
another thousand first tri apps...
Diffstat (limited to 'progs/trivial/tri-square.c')
-rw-r--r-- | progs/trivial/tri-square.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/tri-square.c b/progs/trivial/tri-square.c index ef9ea63048..9102888abd 100644 --- a/progs/trivial/tri-square.c +++ b/progs/trivial/tri-square.c @@ -122,7 +122,7 @@ int main(int argc, char **argv) type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE; glutInitDisplayMode(type); - if (glutCreateWindow("First Tri") == GL_FALSE) { + if (glutCreateWindow(*argv) == GL_FALSE) { exit(1); } |