diff --git a/rpcs3/Emu/RSX/rsx_decode.h b/rpcs3/Emu/RSX/rsx_decode.h index a6ca58890a..5b58bb8421 100644 --- a/rpcs3/Emu/RSX/rsx_decode.h +++ b/rpcs3/Emu/RSX/rsx_decode.h @@ -4258,7 +4258,7 @@ struct registers_decoder 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")); } };