[Scummvm-git-logs] scummvm branch-3-0 -> 68ccd98d1212a6295032fc890bb09bb362804e3f

sluicebox noreply at scummvm.org
Wed Dec 10 23:52:46 UTC 2025


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

Summary:
68ccd98d12 PRIVATE: Play paper sound when selecting diary pages


Commit: 68ccd98d1212a6295032fc890bb09bb362804e3f
    https://github.com/scummvm/scummvm/commit/68ccd98d1212a6295032fc890bb09bb362804e3f
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2025-12-10T15:52:38-08:00

Commit Message:
PRIVATE: Play paper sound when selecting diary pages

Changed paths:
    engines/private/private.cpp


diff --git a/engines/private/private.cpp b/engines/private/private.cpp
index 32a4a6008b7..a33c9a57c47 100644
--- a/engines/private/private.cpp
+++ b/engines/private/private.cpp
@@ -1067,6 +1067,8 @@ bool PrivateEngine::selectDiaryNextPage(Common::Point mousePos) {
 		_currentDiaryPage++;
 		_nextSetting = _diaryNextPageExit.nextSetting;
 
+		playSound(getPaperShuffleSound(), 1, false, false);
+
 		return true;
 	}
 
@@ -1082,6 +1084,8 @@ bool PrivateEngine::selectDiaryPrevPage(Common::Point mousePos) {
 		_currentDiaryPage--;
 		_nextSetting = _diaryPrevPageExit.nextSetting;
 
+		playSound(getPaperShuffleSound(), 1, false, false);
+
 		return true;
 	}
 




More information about the Scummvm-git-logs mailing list