mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-22 17:32:52 +02:00
v111.10
Fixed deterministic serialization on Windows.
This commit is contained in:
@@ -115,10 +115,6 @@ static void crash() {
|
||||
assert(0); /* called only if cothread_t entrypoint returns */
|
||||
}
|
||||
|
||||
const char* co_method() {
|
||||
return "amd64";
|
||||
}
|
||||
|
||||
cothread_t co_active() {
|
||||
if(!co_active_handle) co_active_handle = &co_active_buffer;
|
||||
return co_active_handle;
|
||||
@@ -158,6 +154,10 @@ void co_switch(cothread_t handle) {
|
||||
co_swap(co_active_handle = handle, co_previous_handle);
|
||||
}
|
||||
|
||||
int co_serializable() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user