mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
WrapMode=3 behaves the same as Clamp
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user