From dd6fda901b53e144a03449b74e710a02e18c7400 Mon Sep 17 00:00:00 2001 From: offtkp Date: Fri, 9 Aug 2024 13:16:52 +0300 Subject: [PATCH] Missing declarations --- src/libretro_core.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/libretro_core.cpp b/src/libretro_core.cpp index 2da4ff93..b1571df0 100644 --- a/src/libretro_core.cpp +++ b/src/libretro_core.cpp @@ -405,3 +405,13 @@ void retro_cheat_set(uint index, bool enabled, const char* code) { void retro_cheat_reset() { emulator->getCheats().reset(); } + +namespace AsyncCompiler { + void* createContext(void* mainContext) { + return nullptr; + } + + void makeCurrent(void* mainContext, void* context) {} + + void destroyContext(void* context) {} +} // namespace AsyncCompiler