From 362ecfce0c0ed6e42b4451dca3f5e1e48503566e Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 7 Nov 2020 07:18:57 +1000 Subject: [PATCH] Fix a compilation error with ma_vfs_or_default_open(). --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index b36adcb9..ea925042 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -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) { return ma_vfs_open(pVFS, pFilePath, openMode, pFile);