[email protected] 8 years ago
parent
commit
ff5c88ee5d
1 changed files with 8 additions and 8 deletions
  1. 8 8
      oxygine/src/oxygine/core/oxygine.h

+ 8 - 8
oxygine/src/oxygine/core/oxygine.h

@@ -54,21 +54,21 @@ namespace oxygine
             int h;
             int h;
 
 
             /**sets 24 bits per pixel, otherwise sets 16 bits per pixel?*/
             /**sets 24 bits per pixel, otherwise sets 16 bits per pixel?*/
-            unsigned int mode24bpp :1;
+            bool mode24bpp;
             /**vertical sync*/
             /**vertical sync*/
-            unsigned int vsync :1;
+            bool vsync;
             /**fullscreen mode*/
             /**fullscreen mode*/
-            unsigned int fullscreen :1;
+            bool fullscreen;
             /**can the window be resized*/
             /**can the window be resized*/
-            unsigned int resizable :1;
+            bool resizable;
             /**borderless window*/
             /**borderless window*/
-            unsigned int borderless :1;
+            bool borderless;
             /**will the window be visible*/
             /**will the window be visible*/
-            unsigned int show_window :1;
+            bool show_window;
             /**use OpenGLES driver. Could be used on Windows for emulation OpenGLES via Direct3D*/
             /**use OpenGLES driver. Could be used on Windows for emulation OpenGLES via Direct3D*/
-            unsigned int force_gles :1;
+            bool force_gles;
             /**allow screensaver*/
             /**allow screensaver*/
-            unsigned int allow_screensaver :1;
+            bool allow_screensaver;
 
 
             /**window title*/
             /**window title*/
             const char* title;
             const char* title;