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