[Scummvm-git-logs] scummvm-tools master -> 77daf9269a65c428a8445653c2b59196dfd52021

lephilousophe noreply at scummvm.org
Mon Jun 9 18:03:29 UTC 2025


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:
77daf9269a SCUMM: Fix building when MAKE_LFLS isn't defined


Commit: 77daf9269a65c428a8445653c2b59196dfd52021
    https://github.com/scummvm/scummvm-tools/commit/77daf9269a65c428a8445653c2b59196dfd52021
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2025-06-09T20:03:27+02:00

Commit Message:
SCUMM: Fix building when MAKE_LFLS isn't defined

Changed paths:
    engines/scumm/extract_loom_tg16.cpp
    engines/scumm/extract_loom_tg16.h


diff --git a/engines/scumm/extract_loom_tg16.cpp b/engines/scumm/extract_loom_tg16.cpp
index e0beda9b..941dabf6 100644
--- a/engines/scumm/extract_loom_tg16.cpp
+++ b/engines/scumm/extract_loom_tg16.cpp
@@ -1177,7 +1177,7 @@ struct _index {
 	uint32 sound_addr[NUM_SOUNDS];
 }	lfl_index;
 #else // !MAKE_LFLS
-void dump_resource (Common::File &input, const char *fn_template, int num, p_resource res) {
+void ExtractLoomTG16::dump_resource (Common::File &input, const char *fn_template, int num, p_resource res) {
 	char fname[256];
 	sprintf(fname, fn_template, num);
 	Common::File output(fname, "wb");
diff --git a/engines/scumm/extract_loom_tg16.h b/engines/scumm/extract_loom_tg16.h
index 844053fa..a569af3a 100644
--- a/engines/scumm/extract_loom_tg16.h
+++ b/engines/scumm/extract_loom_tg16.h
@@ -38,6 +38,9 @@ public:
 protected:
 
 	void extract_resource(Common::File &input, Common::File &output, p_resource res);
+#ifndef MAKE_LFLS
+	void dump_resource(Common::File &input, const char *fn_template, int num, p_resource res);
+#endif
 };
 
 #endif




More information about the Scummvm-git-logs mailing list