mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-11 09:25:05 -04:00
13 lines
242 B
C++
13 lines
242 B
C++
#include "internal.hpp"
|
|
#include <dolphin/os.h>
|
|
|
|
void AuroraFillBootInfo() {
|
|
if (OSBaseAddress == 0) {
|
|
return;
|
|
}
|
|
|
|
const auto info = static_cast<OSBootInfo*>(OSPhysicalToCached(0));
|
|
|
|
info->memorySize = aurora::g_config.mem1Size;
|
|
}
|