From a837297eab7447db797198b84fde5f29f1c992ce Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Sun, 4 Aug 2024 10:57:07 +1000 Subject: simplify shader bindings a bit --- src/platform/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/platform/path.c') diff --git a/src/platform/path.c b/src/platform/path.c index 3607089..f43d954 100644 --- a/src/platform/path.c +++ b/src/platform/path.c @@ -16,8 +16,8 @@ path_opt path_parent(arena* a, const char* path) { } #endif #ifdef CEL_PLATFORM_WINDOWS -#include #include +#include #pragma comment(lib, "Shlwapi.lib") path_opt path_parent(arena* a, const char* path) { @@ -29,7 +29,7 @@ path_opt path_parent(arena* a, const char* path) { if (PathRemoveFileSpecA(path_copy)) { return (path_opt){ .path = Str8_cstr_view(path_copy), .has_value = true }; } else { - return (path_opt){ .has_value = false}; + return (path_opt){ .has_value = false }; } } #endif -- cgit v1.2.3-70-g09d2