From b7bc672f1bbf18d8e5001e27cb7cff7cb87a589a Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:49:24 +1000 Subject: Add gui scale options up to 8x (#1279) * add gui scale options up to 8x * add note --- .../notenoughupdates/options/separatesections/LocationEdit.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java index 723d6ae2..82de5b6d 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java @@ -42,10 +42,11 @@ public class LocationEdit { @Expose @ConfigOption( name = "Edit Gui Scale", - desc = "Change the size of NEU's overlays" + desc = "Change the size of NEU's overlays.\n" + + "§c4x and higher only supported on large monitors (4k res)" ) @ConfigEditorDropdown( - values = {"Default", "Small", "Normal", "Large", "Auto"} + values = {"Default", "Small", "Normal", "Large", "Auto", "4x", "5x", "6x", "7x", "8x"} ) public int guiScale = 0; -- cgit