From ef12da774e12548b4c0ceebf478b66d258bb8aa1 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 31 Jul 2023 21:32:37 +0200 Subject: [PATCH] rsx: fix register_vertex_printer value func --- 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 439937309f..97905110bf 100644 --- a/rpcs3/Emu/RSX/rsx_decode.h +++ b/rpcs3/Emu/RSX/rsx_decode.h @@ -4526,7 +4526,7 @@ struct register_vertex_printer return "uchar4"; } - static std::string value(std::string& out, u32 v) + static std::string value(u32 v) { return fmt::format("%u %u %u %u", (v & 0xff), ((v >> 8) & 0xff), ((v >> 16) & 0xff), ((v >> 24) & 0xff)); }