[Scummvm-git-logs] scummvm-tools master -> ee30efc6d3a3319a4ac4e5d759440ebc0fa633d9

mgerhardy noreply at scummvm.org
Sun May 31 10:18:24 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://api.github.com/repos/scummvm/scummvm-tools .

Summary:
ee30efc6d3 MACS2: use the c headers


Commit: ee30efc6d3a3319a4ac4e5d759440ebc0fa633d9
    https://github.com/scummvm/scummvm-tools/commit/ee30efc6d3a3319a4ac4e5d759440ebc0fa633d9
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2026-05-31T12:18:11+02:00

Commit Message:
MACS2: use the c headers

Changed paths:
    engines/macs2/demacs2.cpp
    engines/macs2/extract_macs2.cpp


diff --git a/engines/macs2/demacs2.cpp b/engines/macs2/demacs2.cpp
index ea9bc5e2..da344f37 100644
--- a/engines/macs2/demacs2.cpp
+++ b/engines/macs2/demacs2.cpp
@@ -21,10 +21,10 @@
 
 /* MACS2 Script disassembler */
 
-#include <cstdio>
-#include <cstdint>
-#include <cstdlib>
-#include <cstring>
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
 #include <vector>
 #include <string>
 
diff --git a/engines/macs2/extract_macs2.cpp b/engines/macs2/extract_macs2.cpp
index 191e86b7..0689779b 100644
--- a/engines/macs2/extract_macs2.cpp
+++ b/engines/macs2/extract_macs2.cpp
@@ -21,10 +21,10 @@
 
 /* MACS2 Resource Extractor - extracts images, sounds, music, and strings */
 
-#include <cstdio>
-#include <cstdint>
-#include <cstdlib>
-#include <cstring>
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
 #include <string>
 #include <vector>
 #include <sys/stat.h>




More information about the Scummvm-git-logs mailing list