From 2c4a4d75d22b2e2d1d6c6016e12d5a0904e066aa Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 6 Aug 2019 17:47:57 +1000 Subject: [PATCH] added tooltips to fps controls --- Rebuilder/Rebuilder.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rebuilder/Rebuilder.cs b/Rebuilder/Rebuilder.cs index 34bb3eb..bc4de7d 100644 --- a/Rebuilder/Rebuilder.cs +++ b/Rebuilder/Rebuilder.cs @@ -312,6 +312,9 @@ namespace Rebuilder "This setting overrides that behavior and keeps LEGO Island active even when unfocused.\n\n" + "NOTE: This currently only works in windowed mode."); tip.SetToolTip(upscale_bitmaps, "WARNING: This doesn't upscale the bitmaps' hitboxes yet and can make 2D areas like the Information Center difficult to navigate"); + tip.SetToolTip(default_fps_radio, "LEGO Island's default frame rate cap is ~90 FPS"); + tip.SetToolTip(uncapped_fps_radio, "Removes all frame rate caps"); + tip.SetToolTip(limited_fps_radio, "Set a frame rate cap to use throughout the game"); Controls.Add(grid); Controls.Add(advanced_grid);