diff --git a/doc/2-interface/settings.md b/doc/2-interface/settings.md index 3767e37d2..c6c08a082 100644 --- a/doc/2-interface/settings.md +++ b/doc/2-interface/settings.md @@ -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. diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index 062b76d0b..51ea3cb01 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -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;