diff options
author | Arisotura <thetotalworm@gmail.com> | 2021-06-20 02:23:45 +0200 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2021-06-20 02:23:45 +0200 |
commit | dd2b86d0269a5a35c5a0a819eddebaec1621f1c3 (patch) | |
tree | 4f2e364c9e3feab47a9abee015be17aa0cb98599 /src | |
parent | 5b9f9726251717ede5f040d276dd700278e8963e (diff) |
add missing default return value. fixes #1105
Diffstat (limited to 'src')
-rw-r--r-- | src/NDSCart.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/NDSCart.cpp b/src/NDSCart.cpp index a0bd68c..96cbaa3 100644 --- a/src/NDSCart.cpp +++ b/src/NDSCart.cpp @@ -1118,6 +1118,8 @@ u8 CartRetailIR::SPIWrite(u8 val, u32 pos, bool last) case 0x08: // ID return 0xAA; } + + return 0; } |