[Scummvm-git-logs] scummvm master -> 8e2f7652238d5cc20e994eb5747b6d38cfba9278
sev-
noreply at scummvm.org
Sat Mar 25 13:49:26 UTC 2023
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
404f48df17 NEWS: Mention libmikmod as new optional dependency
8e2f765223 OSYSTEM: Expose getDefaultLogFileName() via OSystem
Commit: 404f48df17c7a1f5fc20ac5d8f008dbd7c78b184
https://github.com/scummvm/scummvm/commit/404f48df17c7a1f5fc20ac5d8f008dbd7c78b184
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-03-25T14:34:13+01:00
Commit Message:
NEWS: Mention libmikmod as new optional dependency
Changed paths:
NEWS.md
diff --git a/NEWS.md b/NEWS.md
index 8ea85f9cb12..2bbd10c25ce 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -12,6 +12,7 @@ For a more comprehensive changelog of the latest experimental code, see:
General:
- Added optional dependency for libvpx.
+ - Added optional dependency for libmikmod.
Asylum:
- Added support for Chinese Sanitarium.
Commit: 8e2f7652238d5cc20e994eb5747b6d38cfba9278
https://github.com/scummvm/scummvm/commit/8e2f7652238d5cc20e994eb5747b6d38cfba9278
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-03-25T14:48:56+01:00
Commit Message:
OSYSTEM: Expose getDefaultLogFileName() via OSystem
Changed paths:
backends/platform/sdl/sdl.h
common/system.h
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index 263f82e5578..28ba76a09ed 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -158,7 +158,6 @@ protected:
virtual AudioCDManager *createAudioCDManager();
// Logging
- virtual Common::String getDefaultLogFileName() { return Common::String(); }
virtual Common::WriteStream *createLogFile();
Backends::Log::Log *_logger;
diff --git a/common/system.h b/common/system.h
index e1021926bf3..3941bf835c4 100644
--- a/common/system.h
+++ b/common/system.h
@@ -1698,6 +1698,14 @@ public:
*/
virtual Common::String getDefaultConfigFileName();
+ /**
+ * Get the default file name (or even path) where the scummvm.log
+ * will be saved.
+ *
+ * Note that not all ports can use this.
+ */
+ virtual Common::String getDefaultLogFileName() { return Common::String(); }
+
/**
* Register the default values for the settings the backend uses into the
* configuration manager.
More information about the Scummvm-git-logs
mailing list