Browse Source

Fix unzipfx tmppath suffix

tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
f4c1b0cdcf
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      data/windows/unzipfx-carla/unzipfx/appDetails.c

+ 2
- 2
data/windows/unzipfx-carla/unzipfx/appDetails.c View File

@@ -72,7 +72,7 @@ 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 "-2.1");
strcat(sfx_tmp_path, SFX_APP_MININAME_TITLE "-" CARLA_VERSION_STRING);
}
#else
{
@@ -84,7 +84,7 @@ char* sfx_get_tmp_path(int withAppName)
strcpy(sfx_tmp_path, "/tmp");

if (withAppName == 1)
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE "-2.1");
strcat(sfx_tmp_path, "/" SFX_APP_MININAME_LCASE "-" CARLA_VERSION_STRING);
}
#endif



Loading…
Cancel
Save