|
12345678 |
- #include "IZ_config.h"
-
- void IZ_GetConfigPath(char* config_path) {
- //const char* config_path_dir = SDL_GetPrefPath("Modal Studios", APP_NAME);
- const char* config_path_dir = SDL_GetBasePath();
- memcpy_s(config_path, 128, config_path_dir, 128);
- strcat_s(config_path, 128, "config.ini");
- }
|