Kernel Explorer: Don't hardcode endianness in name64

This commit is contained in:
Eladash 2019-10-25 17:15:54 +03:00 committed by Nekotekina
parent 3e4cbf67f6
commit f7c177d79e

View File

@ -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