move FPS display down due to new display of difficulty

This commit is contained in:
Trihedraf 2021-12-31 20:32:53 -08:00 committed by Anders Jenbo
commit bb68c800bc

View file

@ -1334,7 +1334,7 @@ void DrawFPS(const Surface &out)
frameend = 0;
}
snprintf(string, 12, "%i FPS", framerate);
DrawString(out, string, Point { 8, 53 }, UiFlags::ColorRed);
DrawString(out, string, Point { 8, 68 }, UiFlags::ColorRed);
}
/**