mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
rsx: fix register_vertex_printer value func
This commit is contained in:
parent
6cd5a7eab9
commit
ef12da774e
1 changed files with 1 additions and 1 deletions
|
@ -4526,7 +4526,7 @@ struct register_vertex_printer<u8, 4>
|
|||
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));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue