mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
dmnt: update for ldr/ro api change
This commit is contained in:
parent
9f972831cc
commit
c3875796df
2 changed files with 6 additions and 10 deletions
|
@ -886,7 +886,7 @@ Result DmntCheatManager::ForceOpenCheatProcess() {
|
|||
{
|
||||
LoaderModuleInfo proc_modules[2];
|
||||
u32 num_modules;
|
||||
if (R_FAILED((rc = ldrDmntGetModuleInfos(g_cheat_process_metadata.process_id, proc_modules, sizeof(proc_modules), &num_modules)))) {
|
||||
if (R_FAILED((rc = ldrDmntGetModuleInfos(g_cheat_process_metadata.process_id, proc_modules, sizeof(proc_modules)/sizeof(proc_modules[0]), &num_modules)))) {
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@ -981,7 +981,7 @@ void DmntCheatManager::OnNewApplicationLaunch() {
|
|||
{
|
||||
LoaderModuleInfo proc_modules[2];
|
||||
u32 num_modules;
|
||||
if (R_FAILED((rc = ldrDmntGetModuleInfos(g_cheat_process_metadata.process_id, proc_modules, sizeof(proc_modules), &num_modules)))) {
|
||||
if (R_FAILED((rc = ldrDmntGetModuleInfos(g_cheat_process_metadata.process_id, proc_modules, sizeof(proc_modules)/sizeof(proc_modules[0]), &num_modules)))) {
|
||||
fatalSimple(rc);
|
||||
}
|
||||
|
||||
|
|
|
@ -86,14 +86,10 @@ void __appInit(void) {
|
|||
fatalSimple(rc);
|
||||
}
|
||||
|
||||
/*
|
||||
if (kernelAbove300()) {
|
||||
rc = roDmntInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
fatalSimple(rc);
|
||||
}
|
||||
rc = roDmntInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
fatalSimple(rc);
|
||||
}
|
||||
*/
|
||||
|
||||
rc = nsdevInitialize();
|
||||
if (R_FAILED(rc)) {
|
||||
|
@ -142,7 +138,7 @@ void __appExit(void) {
|
|||
setExit();
|
||||
lrExit();
|
||||
nsdevExit();
|
||||
/* if (kernelAbove300()) { roDmntExit(); } */
|
||||
roDmntExit();
|
||||
ldrDmntExit();
|
||||
pmdmntExit();
|
||||
smExit();
|
||||
|
|
Loading…
Reference in a new issue