Skip to content

Commit

Permalink
Fixed some strings
Browse files Browse the repository at this point in the history
  • Loading branch information
thespbgamer committed Apr 11, 2021
1 parent 713a63c commit 9a2e615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ZoomLevel/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ private void onLaunched(object sender, GameLaunchedEventArgs e)
var api = Helper.ModRegistry.GetApi<GenericModConfigMenuAPI>("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);
Expand Down

0 comments on commit 9a2e615

Please sign in to comment.