Skip to content

Commit

Permalink
Date: Thu, 18 Apr 2002 13:50:53 -0700
Browse files Browse the repository at this point in the history
From: Joseph Carter <knghtbrd@bluecherry.net>
Subject: [SDL] A critical bugfix!

I discovered a problem with testgl.c which absolutely MUST be fixed!  Not
fixing this bug immediately will be a great blow to budding OpenGL coders
everywhere!
  • Loading branch information
slouken committed Apr 19, 2002
1 parent 66afe95 commit 5bc126f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testgl.c
Expand Up @@ -454,9 +454,9 @@ int RunGLTest( int argc, char* argv[],
/* Initialize the display */
switch (bpp) {
case 8:
rgb_size[0] = 2;
rgb_size[0] = 3;
rgb_size[1] = 3;
rgb_size[2] = 3;
rgb_size[2] = 2;
break;
case 15:
case 16:
Expand Down

0 comments on commit 5bc126f

Please sign in to comment.