diff options
author | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
commit | f02a5f6cc55fc61229a038ac72edb3ce97cb6950 (patch) | |
tree | b3f3b47105dd5939751262bd880dc7821b435679 /progs/demos/paltex.c | |
parent | 902d2faadf37a5627ab2cbcd8993825c8749ec82 (diff) |
Pedantic compiler fixes (Sven Panne)
Diffstat (limited to 'progs/demos/paltex.c')
-rw-r--r-- | progs/demos/paltex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/demos/paltex.c b/progs/demos/paltex.c index d37538bcf43..67ba27bb8ae 100644 --- a/progs/demos/paltex.c +++ b/progs/demos/paltex.c @@ -1,4 +1,4 @@ -/* $Id: paltex.c,v 1.7 2002/01/16 00:48:43 kschultz Exp $ */ +/* $Id: paltex.c,v 1.8 2002/07/12 15:54:02 brianp Exp $ */ /* * Paletted texture demo. Written by Brian Paul. @@ -161,7 +161,7 @@ static void Init( void ) 0, /* border */ GL_COLOR_INDEX, /* texture format */ GL_UNSIGNED_BYTE, /* texture type */ - texture); /* teh texture */ + texture); /* the texture */ #endif glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); |