From 2def72dc6220890681a448503980a8c2356ccd88 Mon Sep 17 00:00:00 2001
From: Nic Barker <nic@nicbarker.com>
Date: Sat, 28 Sep 2024 16:24:34 +1200
Subject: [PATCH] Cache update and fix typo

---
 .github/workflows/cmake-multi-platform.yml | 2 +-
 clay.h                                     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml
index 0c05d91..e94e012 100644
--- a/.github/workflows/cmake-multi-platform.yml
+++ b/.github/workflows/cmake-multi-platform.yml
@@ -58,7 +58,7 @@ jobs:
       uses: actions/cache@v4.0.2
       with:
         # A list of files, directories, and wildcard patterns to cache and restore
-        path: "/home/runner/work/clay/clay/build/_deps/raylib-subbuild"
+        path: "/home/runner/work/clay/clay/build/_deps"
         # An explicit key for restoring and saving the cache
         key: "_deps"
 
diff --git a/clay.h b/clay.h
index 6ac89fa..f5f4c2f 100644
--- a/clay.h
+++ b/clay.h
@@ -28,7 +28,7 @@
 #define CLAY_WASM_EXPORT(null)
 #endif
 
-#ifdef MSC_VER
+#ifdef _MSC_VER
 #define CLAY_PACKED_ENUM : unsigned char
 #else
 #define CLAY_PACKED_ENUM __attribute__((__packed__))