From 9a2e615d31d9f1eda4bd53231911640d4c8e5178 Mon Sep 17 00:00:00 2001 From: thespbgamer Date: Sun, 11 Apr 2021 18:43:01 +0100 Subject: [PATCH] Fixed some strings --- ZoomLevel/ModEntry.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZoomLevel/ModEntry.cs b/ZoomLevel/ModEntry.cs index a24f1de..edeb519 100644 --- a/ZoomLevel/ModEntry.cs +++ b/ZoomLevel/ModEntry.cs @@ -27,8 +27,8 @@ private void onLaunched(object sender, GameLaunchedEventArgs e) var api = Helper.ModRegistry.GetApi("spacechase0.GenericModConfigMenu"); api.RegisterModConfig(ModManifest, () => modConfigs = new ModConfig(), () => Helper.WriteConfig(modConfigs)); - api.RegisterSimpleOption(ModManifest, "Increase Zoom or UI", "The keybind that increases the zoom or UI in-game.", () => modConfigs.IncreaseZoomOrUI, (KeybindList val) => modConfigs.IncreaseZoomOrUI = val); - api.RegisterSimpleOption(ModManifest, "Decrease Zoom or UI", "The keybind that decreases the zoom or UI in-game.", () => modConfigs.DecreaseZoomOrUI, (KeybindList val) => modConfigs.DecreaseZoomOrUI = val); + api.RegisterSimpleOption(ModManifest, "Increase zoom or UI", "The keybind that increases the zoom or UI in-game.", () => modConfigs.IncreaseZoomOrUI, (KeybindList val) => modConfigs.IncreaseZoomOrUI = val); + api.RegisterSimpleOption(ModManifest, "Decrease zoom or UI", "The keybind that decreases the zoom or UI in-game.", () => modConfigs.DecreaseZoomOrUI, (KeybindList val) => modConfigs.DecreaseZoomOrUI = val); api.RegisterSimpleOption(ModManifest, "Hold to change UI", "The keybind that you hold to change UI instead of the zoom.", () => modConfigs.HoldToChangeUIKeys, (KeybindList val) => modConfigs.HoldToChangeUIKeys = val); api.RegisterSimpleOption(ModManifest, "Suppress controller button", "If your inputs are supressed or not.", () => modConfigs.SuppressControllerButton, (bool val) => modConfigs.SuppressControllerButton = val);