Fix silly mistake with flags which would make stereo buffers unsupported

This commit is contained in:
Antonis Ryakiotakis 2015-02-25 14:15:07 +01:00
parent 5d01db8035
commit df258c9054
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ typedef struct {
} GHOST_GLSettings;
typedef enum {
GHOST_glStereoVisual = 0,
GHOST_glWarnSupport
GHOST_glStereoVisual = (1 << 0),
GHOST_glWarnSupport = (1 << 1)
} GHOST_GLFlags;