[Scummvm-git-logs] scummvm master -> aa2b2d4178ea6670fca95bce59b0bfe5012294e4
fracturehill
76959842+fracturehill at users.noreply.github.com
Sun May 9 12:17:55 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:
aa2b2d4178 GRAPHICS: Compile SJIS code when building AGOS
Commit: aa2b2d4178ea6670fca95bce59b0bfe5012294e4
https://github.com/scummvm/scummvm/commit/aa2b2d4178ea6670fca95bce59b0bfe5012294e4
Author: Kaloyan Chehlarski (strahy at outlook.com)
Date: 2021-05-09T15:13:37+03:00
Commit Message:
GRAPHICS: Compile SJIS code when building AGOS
SJIS code only gets built when it's needed by an engine, but AGOS
wasn't marked as one of the engines that requires it, breaking static
engine builds.
Changed paths:
graphics/sjis.h
diff --git a/graphics/sjis.h b/graphics/sjis.h
index 5322c6db98..334ca87700 100644
--- a/graphics/sjis.h
+++ b/graphics/sjis.h
@@ -20,13 +20,13 @@
*
*/
-// The code in this file is currently only used in KYRA and SCI.
-// So if neither of those is enabled, we will skip compiling it.
+// The code in this file is currently used in KYRA, SCI, SCUMM, SAGA,
+// and AGOS. If none of those are enabled, we will skip compiling it.
// We also enable this code for ScummVM builds including support
// for dynamic engine plugins.
// If you plan to use this code in another engine, you will have
// to add the proper define check here.
-#if !(defined(ENABLE_KYRA) || defined(ENABLE_SCI) || defined(ENABLE_SCUMM) || defined(ENABLE_SAGA) || defined(DYNAMIC_MODULES))
+#if !(defined(ENABLE_KYRA) || defined(ENABLE_SCI) || defined(ENABLE_SCUMM) || defined(ENABLE_SAGA) || defined(ENABLE_AGOS) || defined(DYNAMIC_MODULES))
// If neither of the above mentioned is enabled, do not include the SJIS code.
More information about the Scummvm-git-logs
mailing list