From 2ddd5d9abe41946323e69c63ad67f4cd276c3517 Mon Sep 17 00:00:00 2001 From: Looki2000 Date: Thu, 23 Feb 2023 16:35:44 +0100 Subject: [PATCH 1/2] small sussy fixes in about tab: --- builtin/mainmenu/tab_about.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/mainmenu/tab_about.lua b/builtin/mainmenu/tab_about.lua index ce1c48d..004b6df 100644 --- a/builtin/mainmenu/tab_about.lua +++ b/builtin/mainmenu/tab_about.lua @@ -15,7 +15,7 @@ --with this program; if not, write to the Free Software Foundation, Inc., --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. --- IMPORTAND some lines had to be split up to new lines because they didn't fit in the window +-- IMPORTANT! some lines had to be split up to new lines because they didn't fit in the window local sussycraft_authors = { "SussyCraft Game Authors:", @@ -24,7 +24,7 @@ local sussycraft_authors = { "Ɓukasz Brzostowski (Looki2000)", "", - "(Programming, Textures, 3D Models, Soundtrack, Sound)", + "(Programming, Textures, 3D Models, Soundtrack, Sounds)", "Karol Rostek (karoltoja200) discord:karoltoja200#6809", "(Textures)", @@ -173,7 +173,7 @@ return { prepare_credits(credit_list, previous_contributors) -- SUS - local excamation_marks_count = math.random(1, 40) + local excamation_marks_count = math.random(1, 30) table.insert_all(credit_list, { "", "", From 274977b267ff60be3499ae1fe42f04b734a6185b Mon Sep 17 00:00:00 2001 From: Looki2000 Date: Thu, 23 Feb 2023 16:56:59 +0100 Subject: [PATCH 2/2] changed default touchscreen_threshold to 10 --- src/defaultsettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp index 39db6d0..320f66b 100644 --- a/src/defaultsettings.cpp +++ b/src/defaultsettings.cpp @@ -466,7 +466,7 @@ void set_default_settings() #ifdef HAVE_TOUCHSCREENGUI settings->setDefault("touchtarget", "true"); - settings->setDefault("touchscreen_threshold","5"); + settings->setDefault("touchscreen_threshold","10"); settings->setDefault("fixed_virtual_joystick", "false"); settings->setDefault("virtual_joystick_triggers_aux1", "false"); settings->setDefault("clickable_chat_weblinks", "false");