From cca6a19cdd05a44e3122077005a70e37096cd938 Mon Sep 17 00:00:00 2001 From: JohnHolmesII Date: Tue, 27 Aug 2019 14:55:48 -0700 Subject: [PATCH] Fix improper string concatenation in rsx_decode. --- rpcs3/Emu/RSX/rsx_decode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); } };