mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-03 21:25:04 -06:00
Kernel Explorer: Don't hardcode endianness in name64
This commit is contained in:
parent
3e4cbf67f6
commit
f7c177d79e
@ -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…
Reference in New Issue
Block a user