mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-27 06:14:25 +02:00
v111.10
Fixed deterministic serialization on Windows.
This commit is contained in:
@@ -33,10 +33,6 @@ static void springboard(int ignored) {
|
||||
}
|
||||
}
|
||||
|
||||
const char* co_method() {
|
||||
return "sjlj";
|
||||
}
|
||||
|
||||
cothread_t co_active() {
|
||||
if(!co_running) co_running = &co_primary;
|
||||
return (cothread_t)co_running;
|
||||
@@ -140,6 +136,10 @@ void co_switch(cothread_t cothread) {
|
||||
}
|
||||
}
|
||||
|
||||
int co_serializable() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user