Browse Source

Fixed RBG -> RGB in Graphics.

rude 16 years ago
parent
commit
26625c46cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/graphics/opengl/Graphics.h

+ 1 - 1
src/modules/graphics/opengl/Graphics.h

@@ -47,7 +47,7 @@ namespace opengl
 {
 	struct Color
 	{
-		unsigned char r, b, g, a;
+		unsigned char r, g, b, a;
 	};
 
 	struct DisplayMode