Fix a typo in the previous commit.

This commit is contained in:
David Reid
2020-12-04 18:02:43 +10:00
parent 54ae032a11
commit e8499f99bb
+1 -1
View File
@@ -33671,7 +33671,7 @@ MA_API ma_result ma_device_get_master_volume(ma_device* pDevice, float* pVolume)
return MA_INVALID_ARGS;
}
*pVolume = c89atomic_load_f32(pVolume);
*pVolume = c89atomic_load_f32(&pDevice->masterVolumeFactor);
return MA_SUCCESS;
}