diff options
author | Keith Whitwell <[email protected]> | 2009-02-18 18:20:50 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-02-18 18:22:23 +0000 |
commit | defd52f6c75ad1f714ce90f5763ec8a4d48dd773 (patch) | |
tree | 7f095533e7d952942bfbe74e546a74d6a801e940 /progs/trivial/tri-mask-tri.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-mask-tri.c')
-rw-r--r-- | progs/trivial/tri-mask-tri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/trivial/tri-mask-tri.c b/progs/trivial/tri-mask-tri.c index 8333f7ed8ab..449125a4db7 100644 --- a/progs/trivial/tri-mask-tri.c +++ b/progs/trivial/tri-mask-tri.c @@ -143,7 +143,7 @@ int main(int argc, char **argv) glutInitWindowPosition(100, 0); glutInitWindowSize(Width, Height); glutInitDisplayMode(type); - Win = glutCreateWindow("First Tri"); + Win = glutCreateWindow(*argv); Init(); glutReshapeFunc(Reshape); glutKeyboardFunc(Key); |