mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 01:08:34 +00:00
Merge pull request #1640 from rohit-n/switch-default
Silence some -Wswitch-default warnings.
This commit is contained in:
commit
d02eb3ca59
7 changed files with 20 additions and 17 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue