diff --git a/Sources/SeriousSam/Menu.cpp b/Sources/SeriousSam/Menu.cpp index a2f992dea..0a23218da 100644 --- a/Sources/SeriousSam/Menu.cpp +++ b/Sources/SeriousSam/Menu.cpp @@ -1926,10 +1926,8 @@ static void SizeToResolution(PIX pixSizeI, PIX pixSizeJ, INDEX &iRes) return; } } - // if still none found - ASSERT(FALSE); // this should never happen - // return first one - iRes = 0; + // return last one (lowest resolution) + iRes = _ctResolutions-1; }