From ca907265484c4ad09ee41a590b7e88e70489216f Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sun, 3 May 2026 09:47:22 -0700
Subject: [PATCH] Use a better number separator for Mac resources
---
macres/macres.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/macres/macres.cpp b/macres/macres.cpp
index 940f3cc2..31c26ffc 100644
--- a/macres/macres.cpp
+++ b/macres/macres.cpp
@@ -466,7 +466,7 @@ int main(int argc, char *argv[])
Export(res, types[i], ids[j], argv[arg]);
} else {
char path[PATH_MAX];
- SDL_snprintf(path, sizeof(path), "%s/%s%hu", argv[arg], types[i], ids[j]);
+ SDL_snprintf(path, sizeof(path), "%s/%s#%hu", argv[arg], types[i], ids[j]);
FILE *output;
Mac_ResData *D;
if ( (output=fopen(path, "w")) != NULL ) {