|
|
@@ -67,7 +67,10 @@ char* sfx_get_tmp_path(int withAppName) |
|
|
|
GetTempPathA(512 - strlen(SFX_APP_MININAME_TITLE), sfx_tmp_path); |
|
|
|
|
|
|
|
if (withAppName == 1) |
|
|
|
{ |
|
|
|
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE); |
|
|
|
strcat(sfx_tmp_path, CARLA_VERSION_STRING); |
|
|
|
} |
|
|
|
} |
|
|
|
#else |
|
|
|
{ |
|
|
@@ -79,7 +82,10 @@ char* sfx_get_tmp_path(int withAppName) |
|
|
|
strcpy(sfx_tmp_path, "/tmp"); |
|
|
|
|
|
|
|
if (withAppName == 1) |
|
|
|
{ |
|
|
|
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE); |
|
|
|
strcat(sfx_tmp_path, CARLA_VERSION_STRING); |
|
|
|
} |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|