Skip to content

Commit

Permalink
PLUS: Fix parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
angstsmurf committed Dec 15, 2022
1 parent c0c4f6d commit c3ed5cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terps/plus/graphics.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ void ClearApple2ScreenMem(void);

void DrawBlack(void)
{
glk_window_fill_rect(Graphics, y_offset, x_offset, 0, ImageWidth * pixel_size,
ImageHeight * pixel_size);
glk_window_fill_rect(Graphics, 0, xoff, yoff, (glui32)(ImageWidth * pixel_size),
(glui32)(ImageHeight * pixel_size));
LastImgType = NO_IMG;
}

Expand Down

0 comments on commit c3ed5cf

Please sign in to comment.