Fix improper string concatenation in rsx_decode.

This commit is contained in:
JohnHolmesII 2019-08-27 14:55:48 -07:00 committed by Ivan
parent 64aff7f019
commit cca6a19cdd
1 changed files with 1 additions and 1 deletions

View File

@ -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"));
}
};