mirror of
https://github.com/open-simh/simh.git
synced 2026-01-13 15:27:46 +00:00
VIDEO: Fix build when SDL libraries are not available
This commit is contained in:
parent
2142168dfd
commit
93a2f9f5a7
10
sim_video.c
10
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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user