mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 12:48:16 +00:00
GLK: QUEST: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
316bb297b3
commit
22234934fe
@ -93,6 +93,8 @@ int eval_int(String s) {
|
||||
case '/':
|
||||
return arg1 / arg2;
|
||||
// TODO: division should use accountant's round
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user