From 1b7d8c26bdb98c6d793adee56ed4ec0bb1574667 Mon Sep 17 00:00:00 2001 From: Intop <78622918+Intoprelised@users.noreply.github.com> Date: Mon, 23 Aug 2021 09:21:44 -0400 Subject: [PATCH] Fix Fullbright -100 no longer is needed --- Horion/Module/Modules/FullBright.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Horion/Module/Modules/FullBright.cpp b/Horion/Module/Modules/FullBright.cpp index 12eb7f28..bc6a0f82 100644 --- a/Horion/Module/Modules/FullBright.cpp +++ b/Horion/Module/Modules/FullBright.cpp @@ -1,7 +1,7 @@ #include "FullBright.h" FullBright::FullBright() : IModule(0, Category::VISUAL, "Puts your gamma to max") { - registerFloatSetting("Intensity", &this->intensity, this->intensity, -100.f, 25.f); + registerFloatSetting("Intensity", &this->intensity, this->intensity, -25.f, 25.f); } FullBright::~FullBright() {