Skip to content

Commit

Permalink
Fix Ion::USB::DFU on simulator (#602)
Browse files Browse the repository at this point in the history
* Fix simulator

* Also fix the 3DS simulator
  • Loading branch information
Heath123 authored Feb 2, 2024
1 parent 865ad0d commit c8cda08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ion/src/shared/dummy/usb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bool isEnumerated() {
void clearEnumerationInterrupt() {
}

void DFU(bool) {
void DFU(bool, int) {
}

void enable() {
Expand Down
2 changes: 1 addition & 1 deletion ion/src/simulator/3ds/driver/usb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bool Ion::USB::isEnumerated() {
void Ion::USB::clearEnumerationInterrupt() {
}

void Ion::USB::DFU(bool) {
void Ion::USB::DFU(bool, int) {
}

void Ion::USB::enable() {
Expand Down

0 comments on commit c8cda08

Please sign in to comment.