VIDEO: Fix build when SDL libraries are not available

This commit is contained in:
Mark Pizzolato 2015-02-05 05:55:15 -08:00
parent 2142168dfd
commit 93a2f9f5a7

View file

@ -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;