VIDEO: Fix build when SDL libraries are not available
This commit is contained in:
parent
2142168dfd
commit
93a2f9f5a7
1 changed files with 10 additions and 0 deletions
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…
Add table
Reference in a new issue