[Applet Manager] Fix resetting

This commit is contained in:
wheremyfoodat 2023-11-12 21:24:12 +02:00
parent aa40eaf4cc
commit 62af35c42b
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,8 @@ using namespace Applets;
AppletManager::AppletManager(Memory& mem) : miiSelector(mem, nextParameter), swkbd(mem, nextParameter) {}
void AppletManager::reset() {
nextParameter = std::nullopt;
miiSelector.reset();
swkbd.reset();
}