From 048da2f6dd643588679d8b3359f838374f673e04 Mon Sep 17 00:00:00 2001 From: Philip James Date: Wed, 17 May 2017 22:31:21 -0700 Subject: [PATCH] Fixed compile when --disable-sound is passed to configure --- src/common/SoundNull.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/SoundNull.hxx b/src/common/SoundNull.hxx index d9b8065b7..cda9ab671 100644 --- a/src/common/SoundNull.hxx +++ b/src/common/SoundNull.hxx @@ -39,7 +39,7 @@ class SoundNull : public Sound */ SoundNull(OSystem& osystem) : Sound(osystem) { - myOSystem->logMessage("Sound disabled.\n", 1); + myOSystem.logMessage("Sound disabled.\n", 1); } /**