[Scummvm-git-logs] scummvm master -> 937fd7a54d2a7f437b8acabf95a7e09d89eb887b
sev-
noreply at scummvm.org
Thu Feb 12 09:40:43 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
937fd7a54d M4: Fix compilation. This partially reverts 8e93d32b5458e1f5aedb
Commit: 937fd7a54d2a7f437b8acabf95a7e09d89eb887b
https://github.com/scummvm/scummvm/commit/937fd7a54d2a7f437b8acabf95a7e09d89eb887b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-02-12T10:39:53+01:00
Commit Message:
M4: Fix compilation. This partially reverts 8e93d32b5458e1f5aedb
Changed paths:
engines/m4/m4_types.h
diff --git a/engines/m4/m4_types.h b/engines/m4/m4_types.h
index 10b5e6e5ca2..f3eacbe7182 100644
--- a/engines/m4/m4_types.h
+++ b/engines/m4/m4_types.h
@@ -52,11 +52,11 @@ enum {
};
struct Buffer {
- int32 w = 0;
- int32 h = 0;
- uint8 *data = nullptr;
- uint8 encoding = 0;
- int32 stride = 0;
+ int32 w;
+ int32 h;
+ uint8 *data;
+ uint8 encoding;
+ int32 stride;
uint8 *getBasePtr(int x, int y) {
return data + y * w + x;
More information about the Scummvm-git-logs
mailing list