Adding new settings to doc and fixing a tiny typo.

This commit is contained in:
Electric Keet 2023-09-16 21:45:00 -07:00
parent 7912a7982c
commit 7551451d75
2 changed files with 4 additions and 2 deletions

View file

@ -32,8 +32,10 @@ settings are saved when clicking the **OK** or **Apply** buttons at the bottom o
- **Loops**: number of additional times to play through `0Bxx` song loop.
- **Fade out (seconds)**: length of fade out after final loop.
- **Remember last values**
- **Store instrument name in .fui**: when enabled, saving an instrument will store its name. this may increase file size.
- **Load instrument name from .fui**: when enabled, loading an instrument will use the stored name (if present). otherwise, it will use the file name.
### Chip
### New Song
- **Initial system**: the system of chips loaded on starting Furnace.
- **Current system**: sets current chips as default.

View file

@ -503,7 +503,7 @@ void FurnaceGUI::drawSettings() {
settings.writeInsNames=writeInsNamesB;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("when enabled,saving an instrument will store its name.\nthis may increase file size.");
ImGui::SetTooltip("when enabled, saving an instrument will store its name.\nthis may increase file size.");
}
bool readInsNamesB=settings.readInsNames;