WiiUIdent/source/system/OTP.cpp

13 lines
174 B
C++
Raw Normal View History

2023-03-30 21:40:17 +02:00
#include "OTP.hpp"
#include <mocha/mocha.h>
bool OTP::Init()
{
if (Mocha_ReadOTP(&cachedOTP) != MOCHA_RESULT_SUCCESS) {
return false;
}
return true;
}