mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-16 21:29:23 +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;
|
||
|
}
|