edje/multisense: always return muted=true if multisense is disabled

Summary:
there is no sound when multisense is disabled, so this is functionally
equivalent to the audio being muted

Reviewers: devilhorns

Reviewed By: devilhorns

Subscribers: cedric, #reviewers, #committers

Tags: #efl_layout_engine

Differential Revision: https://phab.enlightenment.org/D6837
This commit is contained in:
Mike Blumenkrantz 2018-08-16 10:16:34 -04:00
parent 89c92726c4
commit 3c15bf1663
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ edje_audio_channel_mute_get(Edje_Channel channel)
return _channel_mute_states[channel];
#else
(void)channel;
return EINA_FALSE;
return EINA_TRUE;
#endif
}