mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Return auto on unknown texture filter
This commit is contained in:
parent
6eb145d960
commit
31703eee0d
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ std::string EmulatorConfig::textureFilterToString(TextureFilter filter) {
|
||||||
case TextureFilter::Auto: return "auto";
|
case TextureFilter::Auto: return "auto";
|
||||||
case TextureFilter::ForceNearest: return "nearest";
|
case TextureFilter::ForceNearest: return "nearest";
|
||||||
case TextureFilter::ForceBilinear: return "bilinear";
|
case TextureFilter::ForceBilinear: return "bilinear";
|
||||||
default: Helpers::warn("Invalid texture filter type"); return "unknown";
|
default: Helpers::warn("Invalid texture filter type"); return "auto";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue