early-access version 1442
This commit is contained in:
parent
9cdbafcd33
commit
63b0555231
2 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1441.
|
This is the source code for early-access 1442.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -121,6 +121,10 @@ void SoftwareKeyboard::ExecuteInteractive() {
|
||||||
std::memcpy(&request, data.data(), sizeof(Request));
|
std::memcpy(&request, data.data(), sizeof(Request));
|
||||||
|
|
||||||
switch (request) {
|
switch (request) {
|
||||||
|
case Request::Finalize:
|
||||||
|
complete = true;
|
||||||
|
broker.SignalStateChanged();
|
||||||
|
break;
|
||||||
case Request::Calc: {
|
case Request::Calc: {
|
||||||
broker.PushNormalDataFromApplet(std::make_shared<IStorage>(system, std::vector<u8>{1}));
|
broker.PushNormalDataFromApplet(std::make_shared<IStorage>(system, std::vector<u8>{1}));
|
||||||
broker.SignalStateChanged();
|
broker.SignalStateChanged();
|
||||||
|
|
Loading…
Reference in a new issue