From a73b05d4b062ed57e5f0923842b88cb4eefa5734 Mon Sep 17 00:00:00 2001 From: Amos <48657826+Mauler125@users.noreply.github.com> Date: Thu, 20 Jan 2022 03:08:14 +0100 Subject: [PATCH] Fix compiler error --- r5dev/vpc/basefilesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vpc/basefilesystem.cpp b/r5dev/vpc/basefilesystem.cpp index 68b29f14..e261bdf1 100644 --- a/r5dev/vpc/basefilesystem.cpp +++ b/r5dev/vpc/basefilesystem.cpp @@ -9,7 +9,7 @@ //--------------------------------------------------------------------------------- void HCBaseFileSystem_Warning(void* thisptr, FileWarningLevel_t level, const char* fmt, ...) { - if (fs_warning_level_native->GetInt() < (int)level) + if (fs_warning_level_sdk->GetInt() < (int)level) { return; }