mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 03:32:55 +00:00
Fix improper string concatenation in rsx_decode.
This commit is contained in:
parent
64aff7f019
commit
cca6a19cdd
@ -4258,7 +4258,7 @@ struct registers_decoder<NV4097_SET_CONTROL0>
|
||||
|
||||
static std::string dump(decoded_type&& decoded_values)
|
||||
{
|
||||
return "Depth float enabled: " + decoded_values.depth_float() ? "true" : "false";
|
||||
return "Depth float enabled: " + (decoded_values.depth_float() ? std::string("true") : std::string("false"));
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user