mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Fix t.audio.mixwithsystem defaults to false when absent from conf.lua
--HG-- branch : androidmic
This commit is contained in:
@@ -471,7 +471,9 @@ function love.init()
|
||||
end
|
||||
|
||||
if love._setAudioMixWithSystem then
|
||||
love._setAudioMixWithSystem(c.audio and c.audio.mixwithsystem)
|
||||
if c.audio and c.audio.mixwithsystem ~= nil then
|
||||
love._setAudioMixWithSystem(c.audio.mixwithsystem)
|
||||
end
|
||||
end
|
||||
|
||||
if love._requestRecordingPermission then
|
||||
|
||||
Reference in New Issue
Block a user