mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-24 18:28:44 +00:00
WrapMode=3 behaves the same as Clamp
This commit is contained in:
parent
b515786c8d
commit
19332575aa
2 changed files with 4 additions and 1 deletions
|
@ -713,6 +713,8 @@ enum class WrapMode : u32
|
|||
Clamp = 0,
|
||||
Repeat = 1,
|
||||
Mirror = 2,
|
||||
// Hardware testing indicates that WrapMode set to 3 behaves the same as clamp, though this is an
|
||||
// invalid value
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<WrapMode> : EnumFormatter<WrapMode::Mirror>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue