[Scummvm-git-logs] scummvm master -> 1447e799a15ce235d7c71c70a80a7e6eb32cb548
dwatteau
noreply at scummvm.org
Thu Mar 6 09:09:03 UTC 2025
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:
cb7694d73e SCUMM: Drop unused _freq_current from Player_V1
1447e799a1 SCUMM: NES: Remove unused private fields from Player_NES
Commit: cb7694d73e9ed63257dedfd4fb4441ac56f28c3d
https://github.com/scummvm/scummvm/commit/cb7694d73e9ed63257dedfd4fb4441ac56f28c3d
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-03-06T09:12:38+01:00
Commit Message:
SCUMM: Drop unused _freq_current from Player_V1
Reported by -Wunused-private-field on Clang 15.
Unused since commit fa457b95c107838f11728c84fc1e97779adcdfdb.
Changed paths:
engines/scumm/players/player_v1.h
diff --git a/engines/scumm/players/player_v1.h b/engines/scumm/players/player_v1.h
index 7e8023b0a11..774ed49821d 100644
--- a/engines/scumm/players/player_v1.h
+++ b/engines/scumm/players/player_v1.h
@@ -76,7 +76,6 @@ private:
uint _mplex_step;
uint _mplex;
uint _repeat_ctr;
- uint _freq_current;
int _forced_level;
uint16 _random_lsr;
uint *_value_ptr;
Commit: 1447e799a15ce235d7c71c70a80a7e6eb32cb548
https://github.com/scummvm/scummvm/commit/1447e799a15ce235d7c71c70a80a7e6eb32cb548
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-03-06T09:15:49+01:00
Commit Message:
SCUMM: NES: Remove unused private fields from Player_NES
Reported by -Wunused-private-field on Clang 15.
Changed paths:
engines/scumm/players/player_nes.h
diff --git a/engines/scumm/players/player_nes.h b/engines/scumm/players/player_nes.h
index 11918688c6b..80beacd0ad4 100644
--- a/engines/scumm/players/player_nes.h
+++ b/engines/scumm/players/player_nes.h
@@ -99,12 +99,9 @@ private:
bool isSFXplaying, wasSFXplaying;
- byte *dataStart;
int numNotes;
byte *auxData1;
byte *auxData2;
-
- byte *soundptr;
};
} // End of namespace Scumm
More information about the Scummvm-git-logs
mailing list