mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Kernel Explorer: Don't hardcode endianness in name64
This commit is contained in:
parent
3e4cbf67f6
commit
f7c177d79e
1 changed files with 2 additions and 1 deletions
|
@ -83,8 +83,9 @@ void kernel_explorer::Update()
|
|||
char string[8];
|
||||
|
||||
name64(u64 data)
|
||||
: u64_data(data & 0x00ffffffffffffffull)
|
||||
: u64_data(data)
|
||||
{
|
||||
string[7] = '\0';
|
||||
}
|
||||
|
||||
const char* operator+() const
|
||||
|
|
Loading…
Add table
Reference in a new issue