mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-05 22:55:04 -06:00
rsx: Debugger output text fix
This commit is contained in:
parent
c4d8ef4340
commit
17c8ac9ab8
@ -3791,8 +3791,8 @@ struct registers_decoder<NV4097_SET_BLEND_COLOR>
|
|||||||
|
|
||||||
static std::string dump(decoded_type &&decoded_values)
|
static std::string dump(decoded_type &&decoded_values)
|
||||||
{
|
{
|
||||||
return "Blend color: 8b RGBA = " +
|
return "Blend color: 8b BGRA = " +
|
||||||
std::to_string(decoded_values.red8()) + ", " + std::to_string(decoded_values.green8()) + ", " + std::to_string(decoded_values.blue8()) + ", " + std::to_string(decoded_values.alpha8()) +
|
std::to_string(decoded_values.blue8()) + ", " + std::to_string(decoded_values.green8()) + ", " + std::to_string(decoded_values.red8()) + ", " + std::to_string(decoded_values.alpha8()) +
|
||||||
" 16b RG = " + std::to_string(decoded_values.red16()) + ", " + std::to_string(decoded_values.green16());
|
" 16b RG = " + std::to_string(decoded_values.red16()) + ", " + std::to_string(decoded_values.green16());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user