mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-23 16:54:03 +02:00
Fix a compilation error with ma_vfs_or_default_open().
This commit is contained in:
+1
-1
@@ -42885,7 +42885,7 @@ MA_API ma_result ma_default_vfs_init(ma_default_vfs* pVFS, const ma_allocation_c
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MA_API ma_result ma_vfs_or_default_open(ma_default_vfs* pVFS, const char* pFilePath, ma_uint32 openMode, ma_vfs_file* pFile)
|
MA_API ma_result ma_vfs_or_default_open(ma_vfs* pVFS, const char* pFilePath, ma_uint32 openMode, ma_vfs_file* pFile)
|
||||||
{
|
{
|
||||||
if (pVFS != NULL) {
|
if (pVFS != NULL) {
|
||||||
return ma_vfs_open(pVFS, pFilePath, openMode, pFile);
|
return ma_vfs_open(pVFS, pFilePath, openMode, pFile);
|
||||||
|
|||||||
Reference in New Issue
Block a user