mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-03-15 05:20:43 +00:00
Draw_BeginDisc() is working now.
This commit is contained in:
parent
7226e6201b
commit
722dfab94d
1 changed files with 6 additions and 1 deletions
|
@ -974,7 +974,10 @@ Call before beginning any disc IO.
|
|||
*/
|
||||
void Draw_BeginDisc (void)
|
||||
{
|
||||
// D_BeginDirectRect (vid.width - 24, 0, draw_disc->data, 24, 24);
|
||||
if (!draw_disc)
|
||||
return;
|
||||
|
||||
D_BeginDirectRect (vid.width - 24, 0, draw_disc->data, 24, 24);
|
||||
}
|
||||
|
||||
|
||||
|
@ -988,6 +991,8 @@ Call after completing any disc IO
|
|||
*/
|
||||
void Draw_EndDisc (void)
|
||||
{
|
||||
if (!draw_disc)
|
||||
return;
|
||||
|
||||
D_EndDirectRect (vid.width - 24, 0, 24, 24);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue