mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
GLK: ARCHETYPE: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
6a9b081bad
commit
fc5eb5ecf8
@ -51,6 +51,8 @@ bool access_xarray(XArrayType &the_xarray, int index, void *&result, AccessType
|
||||
case POKE_ACCESS:
|
||||
the_xarray[index - 1] = result;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -267,6 +267,8 @@ bool get_token(progfile &f) {
|
||||
s = s + '\r';
|
||||
next_ch = '\n';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
s = s + next_ch;
|
||||
|
Loading…
Reference in New Issue
Block a user