Fix some compiler warnings

This commit is contained in:
WaluigiWare64
2021-05-03 13:36:21 +01:00
parent cc36f55b8c
commit 2ff065e5ea
17 changed files with 69 additions and 52 deletions

View File

@ -134,8 +134,17 @@ public:
case 1: return Run<1>(); break;
case 2: return Run<2>(); break;
case 3:
if (Num >= 14) return Run<4>();
else if (Num >= 8) return Run<3>();
if (Num >= 14)
{
return Run<4>();
break;
}
else if (Num >= 8)
{
return Run<3>();
break;
}
[[fallthrough]];
default:
return 0;
}