From d63a339afc7f99c6412933fdf70c1bfff217074e Mon Sep 17 00:00:00 2001 From: Stepland <16676308+Stepland@users.noreply.github.com> Date: Sun, 16 Feb 2020 14:51:06 +0100 Subject: [PATCH] Remove useless preferences values --- src/Data/Preferences.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Data/Preferences.hpp b/src/Data/Preferences.hpp index bf36af1..3f8165e 100644 --- a/src/Data/Preferences.hpp +++ b/src/Data/Preferences.hpp @@ -26,8 +26,6 @@ namespace Data { }; struct Layout { - float panel_position_x = 8.f / 768.f; - float panel_position_y = 602.f / 1360.f; float panel_size = 160.f / 768.f; float panel_spacing = (112.f / 3.f) / 768.f; float panel_step() const {return panel_size+panel_spacing;}; @@ -41,8 +39,6 @@ namespace Data { template void serialize(Archive & archive) { archive( - CEREAL_NVP(panel_position_x), - CEREAL_NVP(panel_position_y), CEREAL_NVP(panel_size), CEREAL_NVP(panel_spacing), CEREAL_NVP(ribbon_x),