mirror of
https://github.com/wiiu-env/wiiu-nanddumper-payload.git
synced 2024-11-22 03:19:17 +01:00
Fix exiting from the dumper
This commit is contained in:
parent
6122f9e997
commit
5c5ec09780
@ -37,6 +37,7 @@ EXPORT_DECL(int, OSDynLoad_FindExport, u32 handle, int isdata, const char *symbo
|
|||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
EXPORT_DECL(int, OSGetSecurityLevel, void);
|
EXPORT_DECL(int, OSGetSecurityLevel, void);
|
||||||
EXPORT_DECL(int, OSForceFullRelaunch, void);
|
EXPORT_DECL(int, OSForceFullRelaunch, void);
|
||||||
|
EXPORT_DECL(void, OSShutdown, void);
|
||||||
|
|
||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
//! Thread functions
|
//! Thread functions
|
||||||
@ -139,6 +140,7 @@ void InitOSFunctionPointers(void)
|
|||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
OS_FIND_EXPORT(coreinit_handle, OSGetSecurityLevel);
|
OS_FIND_EXPORT(coreinit_handle, OSGetSecurityLevel);
|
||||||
OS_FIND_EXPORT(coreinit_handle, OSForceFullRelaunch);
|
OS_FIND_EXPORT(coreinit_handle, OSForceFullRelaunch);
|
||||||
|
OS_FIND_EXPORT(coreinit_handle, OSShutdown);
|
||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
//! System functions
|
//! System functions
|
||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -85,6 +85,7 @@ extern int (* OSDynLoad_FindExport)(u32 handle, int isdata, const char *symbol,
|
|||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
extern int (* OSGetSecurityLevel)(void);
|
extern int (* OSGetSecurityLevel)(void);
|
||||||
extern int (* OSForceFullRelaunch)(void);
|
extern int (* OSForceFullRelaunch)(void);
|
||||||
|
extern void (* OSShutdown)(void);
|
||||||
|
|
||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
//! Thread functions
|
//! Thread functions
|
||||||
|
@ -7,6 +7,8 @@ extern "C" {
|
|||||||
|
|
||||||
#include <gctypes.h>
|
#include <gctypes.h>
|
||||||
|
|
||||||
|
typedef u32 BOOL;
|
||||||
|
|
||||||
typedef struct _OSCalendarTime {
|
typedef struct _OSCalendarTime {
|
||||||
int sec;
|
int sec;
|
||||||
int min;
|
int min;
|
||||||
|
14
src/main.c
14
src/main.c
@ -55,10 +55,10 @@ int Menu_Main(int argc, char ** argv){
|
|||||||
cfw_config_t config;
|
cfw_config_t config;
|
||||||
default_config(&config);
|
default_config(&config);
|
||||||
|
|
||||||
//int launch = 1;
|
int launch = ShowMenu(&config);
|
||||||
ShowMenu(&config);
|
if (launch) {
|
||||||
|
|
||||||
ExecuteIOSExploit(&config);
|
ExecuteIOSExploit(&config);
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
OSGetTitleID() == 0x000500101004A200L || // mii maker eur
|
OSGetTitleID() == 0x000500101004A200L || // mii maker eur
|
||||||
@ -66,15 +66,23 @@ int Menu_Main(int argc, char ** argv){
|
|||||||
OSGetTitleID() == 0x000500101004A000L) { // mii maker jpn
|
OSGetTitleID() == 0x000500101004A000L) { // mii maker jpn
|
||||||
|
|
||||||
// restart mii maker.
|
// restart mii maker.
|
||||||
|
if (launch) {
|
||||||
OSForceFullRelaunch();
|
OSForceFullRelaunch();
|
||||||
SYSLaunchMenu();
|
SYSLaunchMenu();
|
||||||
|
} else {
|
||||||
|
OSShutdown();
|
||||||
|
}
|
||||||
return ( (int (*)(int, char **))(*(unsigned int*)0x1005E040) )(argc, argv);
|
return ( (int (*)(int, char **))(*(unsigned int*)0x1005E040) )(argc, argv);
|
||||||
}
|
}
|
||||||
|
|
||||||
ProcUIInit(OSSavesDone_ReadyToRelease);
|
ProcUIInit(OSSavesDone_ReadyToRelease);
|
||||||
|
|
||||||
|
if (launch) {
|
||||||
OSForceFullRelaunch();
|
OSForceFullRelaunch();
|
||||||
SYSLaunchMenu();
|
SYSLaunchMenu();
|
||||||
|
} else {
|
||||||
|
OSShutdown();
|
||||||
|
}
|
||||||
|
|
||||||
while (CheckRunning()) {
|
while (CheckRunning()) {
|
||||||
log_printf_("check");
|
log_printf_("check");
|
||||||
|
@ -239,7 +239,7 @@ int ShowMenu(cfw_config_t * currentConfig)
|
|||||||
console_print_pos(x_offset, 1, " -- NAND Dumper --");
|
console_print_pos(x_offset, 1, " -- NAND Dumper --");
|
||||||
|
|
||||||
console_print_pos(x_offset, 3, "Select your options and press A to launch.");
|
console_print_pos(x_offset, 3, "Select your options and press A to launch.");
|
||||||
console_print_pos(x_offset, 4, "Press HOME to exit back to HBL.");
|
console_print_pos(x_offset, 4, "Press HOME to shutdown the console.");
|
||||||
//console_print_pos(x_offset, 5, "Hold B on start to force enter this menu");
|
//console_print_pos(x_offset, 5, "Hold B on start to force enter this menu");
|
||||||
|
|
||||||
int y_offset = 6;
|
int y_offset = 6;
|
||||||
@ -254,7 +254,7 @@ int ShowMenu(cfw_config_t * currentConfig)
|
|||||||
TEXT_SEL(configPtr[idx], " ", "<"), selection_options[idx].disabled, TEXT_SEL(configPtr[idx], " ", ">"));
|
TEXT_SEL(configPtr[idx], " ", "<"), selection_options[idx].disabled, TEXT_SEL(configPtr[idx], " ", ">"));
|
||||||
}
|
}
|
||||||
|
|
||||||
console_print_pos(x_offset, 15, "Based on mocha CFW by Dimok.");
|
console_print_pos(x_offset, 15, "Original NAND Dumper by koolkdev. Based on mocha CFW by Dimok.");
|
||||||
console_print_pos(x_offset, 16, "Credits go to everyone who contributed to Wii U scene publicly.");
|
console_print_pos(x_offset, 16, "Credits go to everyone who contributed to Wii U scene publicly.");
|
||||||
console_print_pos(x_offset, 17, "Special thanks to smealum, plutoo, yellows8, naehrwert and derrek.");
|
console_print_pos(x_offset, 17, "Special thanks to smealum, plutoo, yellows8, naehrwert and derrek.");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user