summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/Screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WindowServer/Screen.h')
-rw-r--r--Userland/Services/WindowServer/Screen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/WindowServer/Screen.h b/Userland/Services/WindowServer/Screen.h
index b43ba22cea..54d088e466 100644
--- a/Userland/Services/WindowServer/Screen.h
+++ b/Userland/Services/WindowServer/Screen.h
@@ -35,9 +35,9 @@ struct MousePacket;
namespace WindowServer {
-const double mouse_accel_max = 3.5;
-const double mouse_accel_min = 0.5;
-const unsigned scroll_step_size_min = 1;
+constexpr double mouse_accel_max = 3.5;
+constexpr double mouse_accel_min = 0.5;
+constexpr unsigned scroll_step_size_min = 1;
class Screen {
public: