From ccbb38798d1cba6fb51aafef682b5e959c0a1d45 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 20 Dec 2016 07:46:51 +0100 Subject: [PATCH] fix(bar): Action x values should not be volatile --- include/components/types.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/components/types.hpp b/include/components/types.hpp index e2dda121..9aa7fa35 100644 --- a/include/components/types.hpp +++ b/include/components/types.hpp @@ -89,8 +89,8 @@ struct action { struct action_block : public action { alignment align{alignment::NONE}; - volatile double start_x{0.0}; - volatile double end_x{0.0}; + double start_x{0.0}; + double end_x{0.0}; bool active{true}; uint16_t width() const {