mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #1640 from rohit-n/switch-default
Silence some -Wswitch-default warnings.
This commit is contained in:
@ -55,9 +55,10 @@ static std::string GetGLSLVersionString()
|
||||
return "#version 140";
|
||||
case GLSL_150:
|
||||
return "#version 150";
|
||||
default:
|
||||
// Shouldn't ever hit this
|
||||
return "#version ERROR";
|
||||
}
|
||||
// Shouldn't ever hit this
|
||||
return "#version ERROR";
|
||||
}
|
||||
|
||||
void SHADER::SetProgramVariables()
|
||||
|
Reference in New Issue
Block a user