Major update
Changed titlekey dump methodology to no longer need reboot. Added SD seed dumping. Reorganized and clarified UI text. Swapped C++-style I/O for C-style. Tightened up dependencies.
This commit is contained in:
@ -23,7 +23,6 @@ extern "C" void userAppInit()
|
||||
{
|
||||
plInitialize();
|
||||
pmdmntInitialize();
|
||||
pmshellInitialize();
|
||||
splCryptoInitialize();
|
||||
splInitialize();
|
||||
}
|
||||
@ -32,7 +31,6 @@ extern "C" void userAppExit()
|
||||
{
|
||||
plExit();
|
||||
pmdmntExit();
|
||||
pmshellExit();
|
||||
splCryptoExit();
|
||||
splExit();
|
||||
}
|
||||
@ -41,7 +39,8 @@ int main(int argc, char **argv) {
|
||||
Common::intro();
|
||||
|
||||
KeyCollection Keys;
|
||||
Common::wait_to_exit(Keys.get_keys());
|
||||
Keys.get_keys();
|
||||
Common::wait_to_exit();
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user