diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-30 19:33:01 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-30 19:33:01 +0100 |
| commit | 86f0b66beed7305c7cf9c08ec6e37ec1041c4ede (patch) | |
| tree | 50224b22f8bf1f6f2fb17f9753363ea2c86721df /src/config.cpp | |
| parent | 95e06b2f6d87b597a52029dbfa9896f4bd8ca74b (diff) | |
fix crash in release 2.3v2
Diffstat (limited to 'src/config.cpp')
| -rw-r--r-- | src/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.cpp b/src/config.cpp index 51d45a8..38f7d8c 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -10,8 +10,8 @@ utf8_int8_t save_path[MAX_INPUT_LENGTH]; utf8_int8_t path_buffer[MAX_INPUT_LENGTH]; utf8_int8_t filter_buffer[MAX_INPUT_LENGTH]; utf8_int8_t query_buffer[MAX_INPUT_LENGTH]; -uint16_t ts_thread_count = 4; -uint32_t max_file_size = 100; // in MBs +int32_t ts_thread_count = 4; +int32_t max_file_size = 100; // in MBs bool respect_capitalization = false; static void _ts_config_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const utf8_int8_t* line) |
