mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-30 01:50:12 +02:00
v111.10
Fixed deterministic serialization on Windows.
This commit is contained in:
@@ -413,10 +413,6 @@ static void co_init_(void) {
|
||||
co_active_handle = co_create_(state_size, (uintptr_t)&co_switch);
|
||||
}
|
||||
|
||||
const char* co_method() {
|
||||
return "ppc";
|
||||
}
|
||||
|
||||
cothread_t co_active() {
|
||||
if(!co_active_handle) co_init_();
|
||||
|
||||
@@ -429,3 +425,7 @@ void co_switch(cothread_t t) {
|
||||
|
||||
CO_SWAP_ASM(t, old);
|
||||
}
|
||||
|
||||
int co_serializable() {
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user