mark all local functions as static

This commit is contained in:
degasus
2014-07-08 14:29:26 +02:00
parent 3ff1c538ee
commit 22e1aa5bb4
93 changed files with 260 additions and 251 deletions

View File

@ -103,7 +103,7 @@ std::string VideoBackend::GetDisplayName() const
return "OpenGL";
}
void GetShaders(std::vector<std::string> &shaders)
static void GetShaders(std::vector<std::string> &shaders)
{
std::set<std::string> already_found;
@ -138,7 +138,7 @@ void GetShaders(std::vector<std::string> &shaders)
std::sort(shaders.begin(), shaders.end());
}
void InitBackendInfo()
static void InitBackendInfo()
{
g_Config.backend_info.APIType = API_OPENGL;
g_Config.backend_info.bUseRGBATextures = true;