mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12: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];
|
char string[8];
|
||||||
|
|
||||||
name64(u64 data)
|
name64(u64 data)
|
||||||
: u64_data(data & 0x00ffffffffffffffull)
|
: u64_data(data)
|
||||||
{
|
{
|
||||||
|
string[7] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* operator+() const
|
const char* operator+() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue