[Scummvm-git-logs] scummvm-tools master -> 3c30c78a80119b5c389902e7be9e386e3ea481bd
mgerhardy
noreply at scummvm.org
Wed Jun 3 16:38:13 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:
3c30c78a80 MACS2: looks like the header inclusion fix got lost...
Commit: 3c30c78a80119b5c389902e7be9e386e3ea481bd
https://github.com/scummvm/scummvm-tools/commit/3c30c78a80119b5c389902e7be9e386e3ea481bd
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2026-06-03T18:38:06+02:00
Commit Message:
MACS2: looks like the header inclusion fix got lost...
Changed paths:
engines/macs2/demacs2.cpp
diff --git a/engines/macs2/demacs2.cpp b/engines/macs2/demacs2.cpp
index 8898d093..4fd9a0db 100644
--- a/engines/macs2/demacs2.cpp
+++ b/engines/macs2/demacs2.cpp
@@ -21,10 +21,10 @@
/* MACS2 Script decompiler */
-#include <cstdint>
-#include <cstdio>
-#include <cstdlib>
-#include <cstring>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include <string>
#include <vector>
More information about the Scummvm-git-logs
mailing list