From 266eea99dd6b8e15549c6467a04f6b512aa4a0fd Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Sat, 8 Apr 2023 00:30:22 +0100 Subject: [PATCH] asd --- src/Apps/Tools/HDRTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Apps/Tools/HDRTest.cpp b/src/Apps/Tools/HDRTest.cpp index d556959..de99e7f 100644 --- a/src/Apps/Tools/HDRTest.cpp +++ b/src/Apps/Tools/HDRTest.cpp @@ -275,10 +275,10 @@ int main(int argc, char** argv) r_window->EnableRelativeMouse(false); - uint32_t currentTest = 0; + int32_t currentTest = 0; auto t1 = Time::now(); auto startTime = Time::now(); - uint32_t stops = 0; + int32_t stops = 0; while (r_window->Update(handler)) { const auto t2 = Time::now(); @@ -297,7 +297,7 @@ int main(int argc, char** argv) else if (handler.getFirst(Input::ButtonCodes::Key_Down)) stops--; - stops = Clamp(stops, 0u, 5u); + stops = Clamp(stops, 0, 5); float targetNits = 0.0f; switch (stops)