mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 02:38:37 +12:00
Remove redundant const on return value in rsx_methods.h
This commit is contained in:
parent
d1db6a6827
commit
b9130dd663
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ namespace rsx
|
|||
using decoded_type = typename registers_decoder<opcode>::decoded_type;
|
||||
|
||||
template<u32 opcode>
|
||||
const decoded_type<opcode> decode() const
|
||||
decoded_type<opcode> decode() const
|
||||
{
|
||||
u32 register_value = registers[opcode];
|
||||
return decoded_type<opcode>(register_value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue