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/line.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/line.c')
-rw-r--r-- | progs/trivial/line.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/line.c b/progs/trivial/line.c index de5f9274e4..7ccbce3750 100644 --- a/progs/trivial/line.c +++ b/progs/trivial/line.c @@ -131,7 +131,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); } |