From 2115111ea8b71d36b3df3e1b95092f83bf05eb4e Mon Sep 17 00:00:00 2001 From: Baoulettes Date: Fri, 20 May 2022 15:08:03 +0200 Subject: [PATCH] fix int type, removing default value, should build --- libultraship/libultraship/SohImGuiImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libultraship/libultraship/SohImGuiImpl.h b/libultraship/libultraship/SohImGuiImpl.h index 665897e82..c2f4649df 100644 --- a/libultraship/libultraship/SohImGuiImpl.h +++ b/libultraship/libultraship/SohImGuiImpl.h @@ -68,7 +68,7 @@ namespace SohImGui { void EnhancementCheckbox(std::string text, std::string cvarName); void EnhancementSliderInt(std::string text, std::string id, std::string cvarName, int min, int max, std::string format); void EnhancementSliderFloat(std::string text, std::string id, std::string cvarName, float min, float max, std::string format, float defaultValue); - void EnhancementCombobox(const char* name, const char* ComboArray[], s16 FirstTimeValue = -1); + void EnhancementCombobox(const char* name, const char* ComboArray[], uint8_t FirstTimeValue); void DrawMainMenuAndCalculateGameSize(void);