From c5eb5af47d37c5506291e62465656b532a025f20 Mon Sep 17 00:00:00 2001 From: Simon De Backer Date: Thu, 23 Jul 2020 17:05:48 +0200 Subject: [PATCH] Fix name to clarify value is int --- sources/machine_info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/machine_info.cpp b/sources/machine_info.cpp index 14de9d386..98f2f5dfb 100644 --- a/sources/machine_info.cpp +++ b/sources/machine_info.cpp @@ -70,7 +70,7 @@ void Machine_info::init_get_Screen_info() @brief Machine_info::get_max_screen_width @return max screen width */ -int32_t Machine_info::get_max_screen_width() +int32_t Machine_info::i_max_screen_width() { return Max_screen_width; } @@ -79,7 +79,7 @@ int32_t Machine_info::get_max_screen_width() @brief Machine_info::get_max_screen_height @return max screen height */ -int32_t Machine_info::get_max_screen_height() +int32_t Machine_info::i_max_screen_height() { return Max_screen_height; }