fix int type, removing default value, should build

This commit is contained in:
Baoulettes 2022-05-20 15:08:03 +02:00 committed by GitHub
parent c0cd3b5400
commit 2115111ea8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);