[makefile app] apply the brightness fix to the makefile based build

Change-Id: I89871fae94b004c6c5cba017b3bea63441844a87
diff --git a/MakefileBasedBuild/app/main.c b/MakefileBasedBuild/app/main.c
index 3caec84..50839d9 100644
--- a/MakefileBasedBuild/app/main.c
+++ b/MakefileBasedBuild/app/main.c
@@ -806,8 +806,8 @@
         ADK_ledWrite(2, 0, 0, 0);

        

         slider = ADK_capSenseSlider();

+        slider = ((((uint32_t)slider) * 191) >> 8) + 64;

         if(slider != briSlider){

-          slider = ((((uint32_t)slider) * 191) >> 8) + 64;

           briSlider = slider;

           settings.bri = slider;

         }