[Scummvm-git-logs] scummvm master -> 4d556f0db68f581a58c8c573042dd5f3a21da6d4
AndywinXp
noreply at scummvm.org
Tue Jan 3 08:51:25 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
4d556f0db6 JANITORIAL: SCUMM: Change order of class members declarations
Commit: 4d556f0db68f581a58c8c573042dd5f3a21da6d4
https://github.com/scummvm/scummvm/commit/4d556f0db68f581a58c8c573042dd5f3a21da6d4
Author: AndywinXp (andywinxp at gmail.com)
Date: 2023-01-03T09:51:15+01:00
Commit Message:
JANITORIAL: SCUMM: Change order of class members declarations
The _output* vars are semantically separate from the _internal* ones
Changed paths:
engines/scumm/imuse_digi/dimuse_engine.h
diff --git a/engines/scumm/imuse_digi/dimuse_engine.h b/engines/scumm/imuse_digi/dimuse_engine.h
index 072ed91ebdb..2daba5e2455 100644
--- a/engines/scumm/imuse_digi/dimuse_engine.h
+++ b/engines/scumm/imuse_digi/dimuse_engine.h
@@ -87,10 +87,11 @@ private:
bool _checkForUnderrun;
int _underrunCooldown;
- // These three are manipulated in the waveOut functions
- uint8 *_outputAudioBuffer;
int _internalFeedSize;
int _internalSampleRate;
+
+ // These three are manipulated in the waveOut functions
+ uint8 *_outputAudioBuffer;
int _outputFeedSize;
int _outputSampleRate;
More information about the Scummvm-git-logs
mailing list