GTK+: Silence NULL pointer arithmetic warning.

This commit is contained in:
Brandon Wright 2018-11-17 15:24:56 -06:00
parent 50718ac7a9
commit 4471bacf18
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
#include "shaders/glsl.h" #include "shaders/glsl.h"
#define BUFFER_OFFSET(i) ((char *) NULL + (i)) #define BUFFER_OFFSET(i) ((char *) (i))
class S9xOpenGLDisplayDriver : public S9xDisplayDriver class S9xOpenGLDisplayDriver : public S9xDisplayDriver
{ {