mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-30 03:29:59 +02:00
v111.10
Fixed deterministic serialization on Windows.
This commit is contained in:
@@ -16,10 +16,6 @@ static void __stdcall co_thunk(void* coentry) {
|
||||
((void (*)(void))coentry)();
|
||||
}
|
||||
|
||||
const char* co_method() {
|
||||
return "fiber";
|
||||
}
|
||||
|
||||
cothread_t co_active() {
|
||||
if(!co_active_) {
|
||||
ConvertThreadToFiber(0);
|
||||
@@ -50,6 +46,10 @@ void co_switch(cothread_t cothread) {
|
||||
SwitchToFiber(cothread);
|
||||
}
|
||||
|
||||
int co_serializable() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user