From 17c8ac9ab8864553b1670f4625b4dce4766f03cf Mon Sep 17 00:00:00 2001 From: Eladash Date: Thu, 11 Jul 2019 23:28:21 +0300 Subject: [PATCH] rsx: Debugger output text fix --- rpcs3/Emu/RSX/rsx_decode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/rsx_decode.h b/rpcs3/Emu/RSX/rsx_decode.h index 21b497d5a2..9f13cd98fd 100644 --- a/rpcs3/Emu/RSX/rsx_decode.h +++ b/rpcs3/Emu/RSX/rsx_decode.h @@ -3791,8 +3791,8 @@ struct registers_decoder static std::string dump(decoded_type &&decoded_values) { - return "Blend color: 8b RGBA = " + - std::to_string(decoded_values.red8()) + ", " + std::to_string(decoded_values.green8()) + ", " + std::to_string(decoded_values.blue8()) + ", " + std::to_string(decoded_values.alpha8()) + + return "Blend color: 8b BGRA = " + + 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()); } };