Skip to content

Commit

Permalink
Fix error: case label value is less than minimum value for type [-Wer…
Browse files Browse the repository at this point in the history
…ror=switch-outside-range]
  • Loading branch information
dnasdw committed Jun 10, 2024
1 parent 483332a commit da4e6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ void MU_AllEnable(void) {

void MU_GetComputedEndPosition(int* xOut, int* yOut, const u8* commands) {
while (TRUE) {
switch (*commands++) {
switch ((s32)*commands++) {

case MU_COMMAND_END:
return;
Expand Down

0 comments on commit da4e6d3

Please sign in to comment.