From a0d7384c14ac3f65c09818e517952b9c6753f764 Mon Sep 17 00:00:00 2001 From: KaruroChori Date: Wed, 4 Dec 2024 06:16:20 +0000 Subject: [PATCH] Update ui-field.types.cpp to remove uint --- src/ui-field.types.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui-field.types.cpp b/src/ui-field.types.cpp index 208b7778..de80ae04 100644 --- a/src/ui-field.types.cpp +++ b/src/ui-field.types.cpp @@ -149,7 +149,7 @@ namespace field_types{ //TODO: I need to check if number conversions failed or not too. - bool h_px(uint T, size_t* dst, const char* expr, const ui_base* env){ + bool h_px(unsigned int T, size_t* dst, const char* expr, const ui_base* env){ if (T==1){ dst[0]=std::stoi(expr); return true; @@ -182,4 +182,4 @@ namespace field_types{ } -} \ No newline at end of file +}