mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-12 09:09:47 +12:00
Missing declarations
This commit is contained in:
parent
517d51baea
commit
dd6fda901b
1 changed files with 10 additions and 0 deletions
|
@ -405,3 +405,13 @@ void retro_cheat_set(uint index, bool enabled, const char* code) {
|
||||||
void retro_cheat_reset() {
|
void retro_cheat_reset() {
|
||||||
emulator->getCheats().reset();
|
emulator->getCheats().reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace AsyncCompiler {
|
||||||
|
void* createContext(void* mainContext) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void makeCurrent(void* mainContext, void* context) {}
|
||||||
|
|
||||||
|
void destroyContext(void* context) {}
|
||||||
|
} // namespace AsyncCompiler
|
||||||
|
|
Loading…
Add table
Reference in a new issue