diff options
author | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:14:09 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:14:09 -0700 |
commit | 4d0eb2bb1792d3da3e190db7d0b0454aee27e8d5 (patch) | |
tree | 75f956fa27fce673b90bd8a9692904e728837be8 /libblastem.c | |
parent | c55f96b60d5b9d47522d2ca4d581acbbbe2d39f9 (diff) |
Make libretro target successfully build for Windows and possibly Mac
Diffstat (limited to 'libblastem.c')
-rw-r--r-- | libblastem.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libblastem.c b/libblastem.c index e4ba424..a429a8f 100644 --- a/libblastem.c +++ b/libblastem.c @@ -284,6 +284,11 @@ void render_set_video_standard(vid_std std) video_standard = std; } +int render_fullscreen(void) +{ + return 1; +} + void process_events() { static int16_t prev_state[2][RETRO_DEVICE_ID_JOYPAD_L2]; |