diff options
author | Michael Pavone <pavone@retrodev.com> | 2020-05-08 00:22:54 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2020-05-08 00:22:54 -0700 |
commit | 6a8bc413fbfb25ed90aa83c6854835a759d41c35 (patch) | |
tree | 4ed0079facdaebe2f6155705cb3ce40278c55b1a /gen_player.h | |
parent | 50eed62a8b67f10b6f1001368fbc3fae3b3d39fd (diff) |
Make netplay remote sync to network rather than audio or video so it doesn't drift out of sync with the host
Diffstat (limited to 'gen_player.h')
-rw-r--r-- | gen_player.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gen_player.h b/gen_player.h index 0b451da..643ee93 100644 --- a/gen_player.h +++ b/gen_player.h @@ -1,6 +1,7 @@ #ifndef GEN_PLAYER_H_ #define GEN_PLAYER_H_ +#include "render.h" #include "system.h" #include "vdp.h" #include "psg.h" @@ -13,6 +14,7 @@ typedef struct { vdp_context *vdp; ym2612_context *ym; psg_context *psg; + render_thread thread; event_reader reader; } gen_player; |