[Scummvm-git-logs] scummvm master -> 0b4c8176f996f910b3daa3b394659832462de5a0
sev-
sev at scummvm.org
Sun Aug 1 15:23:00 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0b4c8176f9 SYMBIAN: Add test UID app for ScummVm.hrh generator.
Commit: 0b4c8176f996f910b3daa3b394659832462de5a0
https://github.com/scummvm/scummvm/commit/0b4c8176f996f910b3daa3b394659832462de5a0
Author: Fiodar Stryzhniou (fedor_qd at mail.ru)
Date: 2021-08-01T17:22:57+02:00
Commit Message:
SYMBIAN: Add test UID app for ScummVm.hrh generator.
Changed paths:
backends/platform/symbian/symbian_builder/scummvm_hrh.py
diff --git a/backends/platform/symbian/symbian_builder/scummvm_hrh.py b/backends/platform/symbian/symbian_builder/scummvm_hrh.py
index c3a8e248c8..9d13a56a3e 100644
--- a/backends/platform/symbian/symbian_builder/scummvm_hrh.py
+++ b/backends/platform/symbian/symbian_builder/scummvm_hrh.py
@@ -34,7 +34,9 @@ hrh_template = """
#if defined (UIQ3) || defined (__SERIES60_3X__)
#ifdef SCUMMVM_PT_1
#define ScummUid %s
-%s#endif // SCUMMVM_PT_1
+%s#else
+#define ScummUid 0x2006efdb // Test app UID.
+#endif // SCUMMVM_PT_1
#else
#define ScummUid 0x101f9b57
@@ -53,7 +55,7 @@ def Generate_ScummVm_hrh(build):
if i > 0:
defines += macro_template %(i+1, uids[i])
data = hrh_template %(uids[0], defines)
- SafeWriteFile(os.path.join("src", "ScummVm.hrh"), data)
+ SafeWriteFile(os.path.join("src", "scummvm.hrh"), data)
if __name__ == "__main__":
Generate_ScummVm_hrh(build = "full")
More information about the Scummvm-git-logs
mailing list