From df258c90541c5fabe7755b8859752e1a78ca18e0 Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Wed, 25 Feb 2015 14:15:07 +0100 Subject: Fix silly mistake with flags which would make stereo buffers unsupported --- intern/ghost/GHOST_Types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/ghost/GHOST_Types.h') diff --git a/intern/ghost/GHOST_Types.h b/intern/ghost/GHOST_Types.h index 6dd92e5c2f9..eccbaadb71d 100644 --- a/intern/ghost/GHOST_Types.h +++ b/intern/ghost/GHOST_Types.h @@ -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; -- cgit v1.2.3