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