mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
VideoCommon: Fix -Wformat warnings
This commit is contained in:
parent
d71f4168e9
commit
67ba326ff6
2 changed files with 2 additions and 2 deletions
|
@ -1017,7 +1017,7 @@ void GetBPRegInfo(const u8* data, std::string* name, std::string* desc)
|
|||
(copy.clamp0 && copy.clamp1) ? "Top and Bottom" : (copy.clamp0) ?
|
||||
"Top only" :
|
||||
(copy.clamp1) ? "Bottom only" : "None",
|
||||
no_yes[copy.yuv], copy.tp_realFormat(),
|
||||
no_yes[copy.yuv], static_cast<int>(copy.tp_realFormat()),
|
||||
(copy.gamma == 0) ? "1.0" : (copy.gamma == 1) ?
|
||||
"1.7" :
|
||||
(copy.gamma == 2) ? "2.2" : "Invalid value 0x3?",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue