diff options
author | Mike Pavone <pavone@retrodev.com> | 2020-07-12 23:09:02 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2020-07-12 23:09:02 -0700 |
commit | 92078e476251d8b3104e9525c38629da6cf1d542 (patch) | |
tree | e4bc4ec62db431fd9ec216d9ee45ce5a4fe7f585 /libblastem.c | |
parent | fcf2f4d291b9af0daa49620fad8ea8efad901f15 (diff) |
Add stubs for some functions in libblastem.c to fix link failures on windows libretro target
Diffstat (limited to 'libblastem.c')
-rw-r--r-- | libblastem.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libblastem.c b/libblastem.c index 835854c..fb5979a 100644 --- a/libblastem.c +++ b/libblastem.c @@ -517,10 +517,22 @@ void render_source_resumed(audio_source *src) { } +void render_set_external_sync(uint8_t ext_sync_on) +{ +} + void bindings_set_mouse_mode(uint8_t mode) { } +void bindings_release_capture(void) +{ +} + +void bindings_reacquire_capture(void) +{ +} + extern const char rom_db_data[]; char *read_bundled_file(char *name, uint32_t *sizeret) { |