Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Do not disable the auto config input type option #89

Merged
merged 2 commits into from
Apr 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Docs/content/configuration/Input.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chapter: false

**Console Type**: Selects which console to emulate for all input ports. The `NES` and `Famicom` have different accessories and some of the identical accessories (e.g the Zapper) have different behavior on a hardware level. If you want to connect Famicom-only accessories that plug into the Famicom's expansion port, select `Famicom`.

**Automatically configure controllers when loading a game**: When enabled, when loading any game recognized by Mesen's internal game database, the appropriate controllers will automatically be setup. For example, loading up a game like Duck Hunt will connect a Zapper to the second port.
**Automatically configure controllers when loading a game**: When enabled, when loading any game recognized by Mesen's internal game database or the ROM file has a NES 2.0 header, the appropriate controllers will automatically be setup. For example, loading up a game like Duck Hunt will connect a Zapper to the second port.

## Setting up controllers ##

Expand Down
7 changes: 0 additions & 7 deletions GUI.NET/Forms/Config/frmInputConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,6 @@ private void UpdateInterface()
UpdatePlayer3And4Visibility();
UpdateAvailableControllerTypes();
UpdateSetupButtons();

if(ConfigManager.Config.PreferenceInfo.DisableGameDatabase) {
//This option requires the game DB to be active
chkAutoConfigureInput.Enabled = false;
chkAutoConfigureInput.Checked = false;
}

UpdateConflictWarning();
}

Expand Down