Browse Source

Fixed flags type. Resolves #216

Brucey 3 years ago
parent
commit
15283ee325
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glgraphics.mod/glgraphics.linux.c

+ 1 - 1
glgraphics.mod/glgraphics.linux.c

@@ -194,7 +194,7 @@ static void _validateContext( BBGLContext *context ){
 	bbSetSystemWindow(context->window);
 }
 
-void bbGLGraphicsGetSettings( BBGLContext *context,int *width,int *height,int *depth,int *hertz,int *flags ){
+void bbGLGraphicsGetSettings( BBGLContext *context,int *width,int *height,int *depth,int *hertz,BBInt64 *flags ){
 	_validateSize( context );
 	*width=context->width;
 	*height=context->height;