TONY: Fix Missing Default Switch Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-11-30 19:45:43 +00:00
parent 6f678e6e84
commit 46eafcf96b
8 changed files with 183 additions and 0 deletions

View file

@ -341,6 +341,9 @@ SKIPCLICKSINISTRO:
_rcWipeEllipse.right += FSTEP;
_rcWipeEllipse.bottom += FSTEP;
break;
default:
break;
}
}