Deleted unused code. Fixed Torso exception

This commit is contained in:
Absolutely disgusting
2026-03-08 19:28:52 +04:00
parent 59ab0dd893
commit b781f689ac
3 changed files with 3 additions and 24 deletions

View File

@@ -297,26 +297,6 @@ namespace _2DGAMELIB
FrameTimeCounter FTC = new FrameTimeCounter();
RealFpsCounter RFC = new RealFpsCounter();
/*
Action action = delegate
{
if (FPSF.Value > 1.0)
{
Modes[mode].Draw(FPSF);
if (ShowFPS)
{
baseControl.SetTitle(UITitle + " - FPS: " + System.Math.Round(FPSF.Value, 2));
}
}
//DEBUG shows the hit lut
//GD.DrawImage(Hit, new Point(0, 0));
baseControl.SetBitmap(Display);
};
*/
Action action = () =>
{
if (FPSF.Value > 1.0)
@@ -337,7 +317,6 @@ namespace _2DGAMELIB
}
};
while (Drive)
{
FPSF.FPSFixed(action);