mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-04 15:55:07 +01:00
13 lines
174 B
C++
13 lines
174 B
C++
#include "OTP.hpp"
|
|
|
|
#include <mocha/mocha.h>
|
|
|
|
bool OTP::Init()
|
|
{
|
|
if (Mocha_ReadOTP(&cachedOTP) != MOCHA_RESULT_SUCCESS) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|