mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-08 00:02:58 +12:00
Store program ID and expose it in Lua (#414)
This commit is contained in:
parent
7b580ac80e
commit
6279ed699a
8 changed files with 66 additions and 22 deletions
|
@ -524,4 +524,14 @@ void Memory::copySharedFont(u8* pointer) {
|
|||
auto fonts = cmrc::ConsoleFonts::get_filesystem();
|
||||
auto font = fonts.open("CitraSharedFontUSRelocated.bin");
|
||||
std::memcpy(pointer, font.begin(), font.size());
|
||||
}
|
||||
|
||||
std::optional<u64> Memory::getProgramID() {
|
||||
auto cxi = getCXI();
|
||||
|
||||
if (cxi) {
|
||||
return cxi->programID;
|
||||
}
|
||||
|
||||
return std::nullopt;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue