[Scummvm-git-logs] scummvm master -> 64243089c3f07e09b6b02c13abc8c57ae5c56eda
dwatteau
noreply at scummvm.org
Fri Aug 15 18:55:46 UTC 2025
This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
7493ed8e1d DGDS: Fix -Wpedantic warning about extra ';'
bba2c6bc3e FREESCAPE: Fix -Wpedantic warning about extra ';'
64243089c3 GOB: Fix -Wpedantic warnings about extra ';'
Commit: 7493ed8e1d541433f38f14bc7deded9110f7f216
https://github.com/scummvm/scummvm/commit/7493ed8e1d541433f38f14bc7deded9110f7f216
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-08-15T20:51:10+02:00
Commit Message:
DGDS: Fix -Wpedantic warning about extra ';'
Changed paths:
engines/dgds/debug_util.h
diff --git a/engines/dgds/debug_util.h b/engines/dgds/debug_util.h
index 668bf6d1fc8..4e859cd4c38 100644
--- a/engines/dgds/debug_util.h
+++ b/engines/dgds/debug_util.h
@@ -41,7 +41,7 @@ template<class C> static Common::String dumpStructList(const Common::String &ind
return str;
}
-};
+}
} // end namespace Dgds
Commit: bba2c6bc3eeb82e8b256033ce6f29c071d5ea4c6
https://github.com/scummvm/scummvm/commit/bba2c6bc3eeb82e8b256033ce6f29c071d5ea4c6
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-08-15T20:52:02+02:00
Commit Message:
FREESCAPE: Fix -Wpedantic warning about extra ';'
Changed paths:
engines/freescape/objects/sensor.cpp
diff --git a/engines/freescape/objects/sensor.cpp b/engines/freescape/objects/sensor.cpp
index 427bb131180..ec23f365537 100644
--- a/engines/freescape/objects/sensor.cpp
+++ b/engines/freescape/objects/sensor.cpp
@@ -67,7 +67,7 @@ Sensor::Sensor(
void Sensor::scale(int factor) {
_origin = _origin / factor;
_size = _size / factor;
-};
+}
Object *Sensor::duplicate() {
Sensor *sensor = new Sensor(_objectID, _origin, _rotation, (*_colours)[0], _firingInterval, _firingRange, _axis, _flags, _condition, _conditionSource);
Commit: 64243089c3f07e09b6b02c13abc8c57ae5c56eda
https://github.com/scummvm/scummvm/commit/64243089c3f07e09b6b02c13abc8c57ae5c56eda
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-08-15T20:54:46+02:00
Commit Message:
GOB: Fix -Wpedantic warnings about extra ';'
Changed paths:
engines/gob/inter_v7.cpp
diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp
index 95f7631f4ba..3e99edcd24f 100644
--- a/engines/gob/inter_v7.cpp
+++ b/engines/gob/inter_v7.cpp
@@ -1455,28 +1455,28 @@ void Inter_v7::o7_draw0xE6() {
_vm->_game->_script->readVarIndex();
_vm->_game->_script->readVarIndex();
warning("STUB: o7_draw0xE6 (Adibou/Musique)");
-};
+}
void Inter_v7::o7_draw0xE7() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_draw0xE7 (Adibou/Musique)");
-};
+}
void Inter_v7::o7_draw0xE8() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_draw0xE8 (Adibou/Musique)");
-};
+}
void Inter_v7::o7_draw0xE9() {
_vm->_game->_script->readVarIndex();
_vm->_game->_script->readVarIndex();
warning("STUB: o7_draw0xE8 (Adibou/Musique)");
-};
+}
void Inter_v7::o7_draw0xF0() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_draw0xF0 (Adibou/Musique)");
-};
+}
void Inter_v7::o7_executeModAddEvent() {
_vm->_game->_script->readVarIndex();
@@ -1484,33 +1484,33 @@ void Inter_v7::o7_executeModAddEvent() {
_vm->_game->_script->readVarIndex();
_vm->_game->_script->readVarIndex();
warning("STUB: o7_executeModAddEvent (Adibou/Musique)");
-};
+}
void Inter_v7::o7_executeModSetLength() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_executeModSetLength (Adibou/Musique)");
-};
+}
void Inter_v7::o7_executeModStart() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_executeModSetLength (Adibou/Musique)");
-};
+}
void Inter_v7::o7_executeModGetPosition() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_executeModSetLength (Adibou/Musique)");
-};
+}
void Inter_v7::o7_vmdGetSoundBuffer() {
_vm->_game->_script->readValExpr();
_vm->_game->_script->readVarIndex();
warning("STUB: o7_vmdGetSoundBuffer (Adibou/Musique)");
-};
+}
void Inter_v7::o7_vmdReleaseSoundBuffer() {
_vm->_game->_script->readVarIndex();
warning("STUB: o7_vmdReleaseSoundBuffer (Adibou/Musique)");
-};
+}
void Inter_v7::o7_printText(OpFuncParams ¶ms) {
More information about the Scummvm-git-logs
mailing list