[Scummvm-git-logs] scummvm master -> 10a0919b19167b09ba2e154b9cbf4e12e1be354f

sev- noreply at scummvm.org
Sun Sep 28 20:26:52 UTC 2025


This automated email contains information about 5 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
ca0b150013 JANITORIAL: remove redundant semicolons
dfbb2accbb JANITORIAL: remove redundant semicolons
17b2365c45 JANITORIAL: remove redundant semicolons
431a61a7d7 JANITORIAL: remove redundant semicolons
10a0919b19 JANITORIAL: remove redundant semicolons


Commit: ca0b150013a84173ec518e1c3afe4029114bcde7
    https://github.com/scummvm/scummvm/commit/ca0b150013a84173ec518e1c3afe4029114bcde7
Author: Michael (michael_kuerbis at web.de)
Date: 2025-09-28T22:26:48+02:00

Commit Message:
JANITORIAL: remove redundant semicolons

Changed paths:
    engines/bagel/hodjnpodj/archeroids/main.cpp
    engines/bagel/hodjnpodj/battlefish/bfish.cpp
    engines/bagel/hodjnpodj/fuge/fuge.cpp
    engines/bagel/hodjnpodj/novacancy/main.cpp
    engines/bagel/hodjnpodj/riddles/riddles.cpp
    engines/bagel/mfc/win_app.cpp


diff --git a/engines/bagel/hodjnpodj/archeroids/main.cpp b/engines/bagel/hodjnpodj/archeroids/main.cpp
index 094711a7f97..b105256f106 100644
--- a/engines/bagel/hodjnpodj/archeroids/main.cpp
+++ b/engines/bagel/hodjnpodj/archeroids/main.cpp
@@ -3201,7 +3201,7 @@ void CMainWindow::GamePause() {
 		m_bMoveMode = false;
 		MFC::SetCursor(LoadCursor(nullptr, IDC_ARROW));
 	}
-};
+}
 
 
 void CMainWindow::GameResume() {
@@ -3209,7 +3209,7 @@ void CMainWindow::GameResume() {
 
 	if (m_bMoveMode)
 		SetCursor(nullptr);
-};
+}
 
 void CMainWindow::OnActivate(unsigned int nState, CWnd *, bool) {
 	if (nState == WA_ACTIVE || nState == WA_CLICKACTIVE)
diff --git a/engines/bagel/hodjnpodj/battlefish/bfish.cpp b/engines/bagel/hodjnpodj/battlefish/bfish.cpp
index 36a65ba7ab4..92c57648b5b 100644
--- a/engines/bagel/hodjnpodj/battlefish/bfish.cpp
+++ b/engines/bagel/hodjnpodj/battlefish/bfish.cpp
@@ -1091,7 +1091,7 @@ void CBFishWindow::RemoveTurnHarpoon() {
 ****************************************************************/
 void CBFishWindow::GamePause() {
 	m_bPause = true;
-};
+}
 
 
 /*****************************************************************
@@ -1113,7 +1113,7 @@ void CBFishWindow::GamePause() {
 ****************************************************************/
 void CBFishWindow::GameResume() {
 	m_bPause = false;
-};
+}
 
 
 /*****************************************************************
diff --git a/engines/bagel/hodjnpodj/fuge/fuge.cpp b/engines/bagel/hodjnpodj/fuge/fuge.cpp
index ed75223b9f4..14d2a7655ae 100644
--- a/engines/bagel/hodjnpodj/fuge/fuge.cpp
+++ b/engines/bagel/hodjnpodj/fuge/fuge.cpp
@@ -811,13 +811,13 @@ bool CFugeWindow::OnCommand(WPARAM wParam, LPARAM lParam) {
 
 void CFugeWindow::GamePause() {
 	m_bPause = true;
-};
+}
 
 
 void CFugeWindow::GameResume() {
 	if (!m_bBallOnPaddle && m_bMovingPaddle)
 		m_bPause = false;
-};
+}
 
 
 void CFugeWindow::PlayGame() {
diff --git a/engines/bagel/hodjnpodj/novacancy/main.cpp b/engines/bagel/hodjnpodj/novacancy/main.cpp
index 94836ce2534..a10aec8e5b8 100644
--- a/engines/bagel/hodjnpodj/novacancy/main.cpp
+++ b/engines/bagel/hodjnpodj/novacancy/main.cpp
@@ -429,12 +429,12 @@ bool CMainWindow::OnCommand(WPARAM wParam, LPARAM lParam) {
 
 void CMainWindow::GamePause() {
 	m_bPause = true;
-};
+}
 
 
 void CMainWindow::GameResume() {
 	m_bPause = false;
-};
+}
 
 void CMainWindow::PlayGame() {
 	ERROR_CODE errCode;
diff --git a/engines/bagel/hodjnpodj/riddles/riddles.cpp b/engines/bagel/hodjnpodj/riddles/riddles.cpp
index 6079fa4706b..84df0b12e3e 100644
--- a/engines/bagel/hodjnpodj/riddles/riddles.cpp
+++ b/engines/bagel/hodjnpodj/riddles/riddles.cpp
@@ -536,12 +536,12 @@ bool CRiddlesWindow::OnCommand(WPARAM wParam, LPARAM lParam) {
 
 void CRiddlesWindow::GamePause() {
 	m_bPause = true;
-};
+}
 
 
 void CRiddlesWindow::GameResume() {
 	m_bPause = false;
-};
+}
 
 void CRiddlesWindow::PlayGame() {
 	char szBuf[40];
diff --git a/engines/bagel/mfc/win_app.cpp b/engines/bagel/mfc/win_app.cpp
index e9017ba1218..49dc5726023 100644
--- a/engines/bagel/mfc/win_app.cpp
+++ b/engines/bagel/mfc/win_app.cpp
@@ -40,7 +40,7 @@ namespace MFC {
 class CTempGdiObject : public CGdiObject {
 	DECLARE_DYNCREATE(CTempGdiObject)
 };
-IMPLEMENT_DYNCREATE(CTempGdiObject, CGdiObject);
+IMPLEMENT_DYNCREATE(CTempGdiObject, CGdiObject)
 
 IMPLEMENT_DYNAMIC(CWinApp, CWinThread)
 


Commit: dfbb2accbb5ba1023337828aa9ed69d07fd3773f
    https://github.com/scummvm/scummvm/commit/dfbb2accbb5ba1023337828aa9ed69d07fd3773f
Author: Michael (michael_kuerbis at web.de)
Date: 2025-09-28T22:26:48+02:00

Commit Message:
JANITORIAL: remove redundant semicolons

Changed paths:
    engines/director/sound.cpp


diff --git a/engines/director/sound.cpp b/engines/director/sound.cpp
index f41f5bca48c..164569ce50e 100644
--- a/engines/director/sound.cpp
+++ b/engines/director/sound.cpp
@@ -1054,6 +1054,6 @@ Audio::AudioStream *MoaSoundFormatDecoder::getAudioStream(bool looping, bool for
 		}
 	}
 	return stream;
-};
+}
 
 } // End of namespace Director


Commit: 17b2365c45c546ffd87389c792fba63615296592
    https://github.com/scummvm/scummvm/commit/17b2365c45c546ffd87389c792fba63615296592
Author: Michael (michael_kuerbis at web.de)
Date: 2025-09-28T22:26:48+02:00

Commit Message:
JANITORIAL: remove redundant semicolons

Changed paths:
    audio/adlib_ctmidi.cpp


diff --git a/audio/adlib_ctmidi.cpp b/audio/adlib_ctmidi.cpp
index 8c6fdbaa1cc..be0d1cf476d 100644
--- a/audio/adlib_ctmidi.cpp
+++ b/audio/adlib_ctmidi.cpp
@@ -379,7 +379,7 @@ MidiDriver_ADLIB_CTMIDI::MidiDriver_ADLIB_CTMIDI(OPL::Config::OplType oplType, i
 	// This might cause marginally lower volumes in this implementation if a track
 	// does not set volume controller values.
 	setControllerDefault(MidiDriver_Multisource::CONTROLLER_DEFAULT_VOLUME, 0x7F);
-};
+}
 
 int MidiDriver_ADLIB_CTMIDI::open() {
 	// Initialize instrument banks


Commit: 431a61a7d72030641321ebb3ec1733fc92f3ac61
    https://github.com/scummvm/scummvm/commit/431a61a7d72030641321ebb3ec1733fc92f3ac61
Author: Michael (michael_kuerbis at web.de)
Date: 2025-09-28T22:26:48+02:00

Commit Message:
JANITORIAL: remove redundant semicolons

Changed paths:
    graphics/tinygl/zbuffer.cpp


diff --git a/graphics/tinygl/zbuffer.cpp b/graphics/tinygl/zbuffer.cpp
index 6c8a080a7a8..27ddb80cd24 100644
--- a/graphics/tinygl/zbuffer.cpp
+++ b/graphics/tinygl/zbuffer.cpp
@@ -283,12 +283,12 @@ static byte satAdd(byte a, byte b) {
 	// from: https://web.archive.org/web/20190213215419/https://locklessinc.com/articles/sat_arithmetic/
 	byte r = a + b;
 	return (byte)(r | -(r < a));
-};
+}
 
 static byte sat16_to_8(uint32 x) {
 	x = (x + 128) >> 8; // rounding 16 to 8 
 	return (byte)(x | -!!(x >> 8)); // branchfree saturation
-};
+}
 
 static byte fpMul(byte a, byte b) {
 	// from: https://community.khronos.org/t/precision-curiosity-1-255-or-1-256/40539/11
@@ -296,7 +296,7 @@ static byte fpMul(byte a, byte b) {
 	// this also implicitly saturates
 	uint32 r = a * b;
 	return (byte)((r + (r >> 8) + 127) >> 8);
-};
+}
 
 void FrameBuffer::applyTextureEnvironment(
 	int internalformat,


Commit: 10a0919b19167b09ba2e154b9cbf4e12e1be354f
    https://github.com/scummvm/scummvm/commit/10a0919b19167b09ba2e154b9cbf4e12e1be354f
Author: Michael (michael_kuerbis at web.de)
Date: 2025-09-28T22:26:48+02:00

Commit Message:
JANITORIAL: remove redundant semicolons

Changed paths:
    gui/integrity-dialog.cpp


diff --git a/gui/integrity-dialog.cpp b/gui/integrity-dialog.cpp
index 0806228ce24..a049342302d 100644
--- a/gui/integrity-dialog.cpp
+++ b/gui/integrity-dialog.cpp
@@ -214,12 +214,12 @@ bool IntegrityDialog::progressUpdate(int bytesProcessed) {
 	}
 
 	return true;
-};
+}
 
 static bool progressUpdateCallback(void *param, int bytesProcessed) {
 	IntegrityDialog *dialog = (IntegrityDialog *)param;
 	return dialog->progressUpdate(bytesProcessed);
-};
+}
 
 
 void IntegrityDialog::open() {




More information about the Scummvm-git-logs mailing list