diff options
| author | Baoulettes <perlouzerie@hotmail.fr> | 2022-05-20 15:08:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-20 15:08:03 +0200 |
| commit | 2115111ea8b71d36b3df3e1b95092f83bf05eb4e (patch) | |
| tree | ef404e36646a43c5d134bdfb556e6b3c2e19b1f9 | |
| parent | c0cd3b54006f63cab7600a6db7779b8958b7064a (diff) | |
fix int type, removing default value, should build
| -rw-r--r-- | libultraship/libultraship/SohImGuiImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
