diff options
| author | raysan5 <[email protected]> | 2016-11-15 19:15:25 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-11-15 19:15:25 +0100 |
| commit | 9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a (patch) | |
| tree | 16aedc5c77f713ec3d9e7a74e57367c182185ae2 /src/rlgl.h | |
| parent | a3d71dd58d993d15d695b0cd58b434ef2604185b (diff) | |
| download | raylib-9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a.tar.gz raylib-9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a.zip | |
Removed byte typedef
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -117,15 +117,14 @@ typedef enum { RL_PROJECTION, RL_MODELVIEW, RL_TEXTURE } MatrixMode; typedef enum { RL_LINES, RL_TRIANGLES, RL_QUADS } DrawMode; +typedef unsigned char byte; + #if defined(RLGL_STANDALONE) #ifndef __cplusplus // Boolean type typedef enum { false, true } bool; #endif - // byte type - typedef unsigned char byte; - // Color type, RGBA (32bit) typedef struct Color { unsigned char r; |
