diff --git a/seika/utils/se_platform.h b/seika/utils/se_platform.h index 39c46ac..334ecb2 100644 --- a/seika/utils/se_platform.h +++ b/seika/utils/se_platform.h @@ -18,6 +18,12 @@ extern "C" { #define SE_TRIGGER_BREAKPOINT #endif +#if defined(_WIN32) || defined(_WIN64) // Windows +#define SE_PLATFORM_PATH_SEPARATOR_STRING "\\" +#else +#define SE_PLATFORM_PATH_SEPARATOR_STRING "/" +#endif + bool se_platform_is_debugger_attached(); #ifdef __cplusplus diff --git a/vcpkg.json b/vcpkg.json index 5e917c2..b8cbce1 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,6 +1,6 @@ { "name": "seika", - "version": "0.0.8", + "version": "0.0.9", "dependencies": [ { "name": "sdl2",