From 93a2f9f5a7c08b8a0411064958256fb37fe4a9e7 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 5 Feb 2015 05:55:15 -0800 Subject: [PATCH] VIDEO: Fix build when SDL libraries are not available --- sim_video.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sim_video.c b/sim_video.c index e089f72e..3fdd97b6 100644 --- a/sim_video.c +++ b/sim_video.c @@ -1788,6 +1788,16 @@ void vid_draw (int32 x, int32 y, int32 w, int32 h, uint32 *buf) return; } +t_stat vid_set_cursor (t_bool visible, uint32 width, uint32 height, uint8 *data, uint8 *mask) +{ +return SCPE_NOFNC; +} + +void vid_set_cursor_position (int32 x, int32 y) +{ +return; +} + void vid_refresh (void) { return;