mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
libctru expects this to be 32-readable
This commit is contained in:
parent
29352d223b
commit
2f056e820a
1 changed files with 1 additions and 0 deletions
|
@ -150,6 +150,7 @@ u32 Memory::read32(u32 vaddr) {
|
|||
return *(u32*)(pointer + offset);
|
||||
} else {
|
||||
switch (vaddr) {
|
||||
case 0x1FF80000: return u32(kernelVersion) << 16;
|
||||
case ConfigMem::Datetime0: return u32(timeSince3DSEpoch()); // ms elapsed since Jan 1 1900, bottom 32 bits
|
||||
case ConfigMem::Datetime0 + 4:
|
||||
return u32(timeSince3DSEpoch() >> 32); // top 32 bits
|
||||
|
|
Loading…
Add table
Reference in a new issue