From 168da763e44d03fc472d81715a155096b44f50e4 Mon Sep 17 00:00:00 2001 From: Nathan Mills <38995150+Quipyowert2@users.noreply.github.com> Date: Sat, 22 Apr 2023 16:47:36 -0700 Subject: [PATCH 1/2] Fix undefined reference to Screen::scrollWheelEnabled. --- src/Settings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Settings.cpp b/src/Settings.cpp index 07c11e79..96671b42 100644 --- a/src/Settings.cpp +++ b/src/Settings.cpp @@ -126,7 +126,9 @@ void Settings::load(std::string filename) READ_PARSED_INT(mute); READ_PARSED_INT(rememberUnit); READ_PARSED_INT(scrollWheelEnabled); +#ifndef YOG_SERVER_ONLY GAGGUI::Screen::scrollWheelEnabled = scrollWheelEnabled; +#endif for(int n=0; n Date: Sat, 22 Apr 2023 19:19:26 -0700 Subject: [PATCH 2/2] Bump debhelper compatibility level to v9. This fixes the packaging error during the Ubuntu 22.04 CI build for PR #77. --- debian/compat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/compat b/debian/compat index 1e8b3149..ec635144 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -6 +9