avoid the extern keyword in .cpp files

This commit is contained in:
degasus
2014-07-08 16:49:33 +02:00
parent 6d3f249dcc
commit 81ed17be53
42 changed files with 28 additions and 104 deletions

View File

@ -17,7 +17,7 @@ enum GLSL_VERSION {
};
// ogl-only config, so not in VideoConfig.h
extern struct VideoConfig {
struct VideoConfig {
bool bSupportsGLSLCache;
bool bSupportsGLPinnedMemory;
bool bSupportsGLSync;
@ -35,7 +35,8 @@ extern struct VideoConfig {
const char* glsl_version;
s32 max_samples;
} g_ogl_config;
};
extern VideoConfig g_ogl_config;
class Renderer : public ::Renderer
{