mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-15 06:58:37 +02:00
Silence the -Wswitch warnings in Tev
The compiler was loudly announcing each and every branch Tev was not checking in a switch statement, but Tev has learned it's lesson and will produce that warning no more.
This commit is contained in:
@ -814,6 +814,8 @@ void Tev::Draw()
|
||||
fog = 1.0f - fog;
|
||||
fog = pow(2.0f, -8.0f * fog * fog);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// lerp from output to fog color
|
||||
|
Reference in New Issue
Block a user