Update for ctrcommon changes.

This commit is contained in:
Steven Smith 2015-04-13 14:25:25 -07:00
parent 07d45c83ff
commit ada9e85713

View File

@ -23,17 +23,6 @@ int main(int argc, char **argv) {
}
bool ninjhax = platformIsNinjhax();
if(ninjhax) {
KernelResult result = platformAcquireServices();
if(result != KERNEL_SUCCESS) {
std::stringstream errorStream;
errorStream << "Failed to acquire services." << "\n";
errorStream << platformGetKernelResultString(result) << "\n";
uiPrompt(TOP_SCREEN, errorStream.str(), false);
platformCleanup();
return 0;
}
}
std::vector<std::string> extensions;
extensions.push_back("cia");