mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 04:29:13 +12:00
Add Yuzu NFC types header, clean up headers
This commit is contained in:
parent
139ea16fda
commit
679eb0f7bc
6 changed files with 428 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
|||
#include "services/amiibo_device.hpp"
|
||||
|
||||
void AmiiboDevice::reset() { loaded = false; }
|
||||
void AmiiboDevice::reset() {
|
||||
encrypted = false;
|
||||
loaded = false;
|
||||
}
|
||||
|
||||
// Load amiibo information from our raw 540 byte array
|
||||
void AmiiboDevice::loadFromRaw() {
|
||||
|
||||
}
|
|
@ -75,6 +75,8 @@ bool NFCService::loadAmiibo(const std::filesystem::path& path) {
|
|||
return false;
|
||||
}
|
||||
|
||||
device.loadFromRaw();
|
||||
|
||||
if (tagOutOfRangeEvent.has_value()) {
|
||||
kernel.clearEvent(tagOutOfRangeEvent.value());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue