Skip to content

Commit 15ce19d

Browse files
committed
FIX: temporary fix in host-window using REBXYF instead of REBPAR
1 parent 9a22040 commit 15ce19d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/os/win32/host-window.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static struct gob_window *Gob_Windows;
7878

7979
REBGOB *Gob_Root; // Top level GOB (the screen)
8080
HCURSOR Cursor; // active cursor image object
81-
REBPAR Zero_Pair = {0, 0};
81+
REBXYF Zero_Pair = {0, 0};
8282
//void* Effects;
8383

8484

@@ -521,7 +521,7 @@ static void Free_Window(REBGOB *gob) {
521521

522522
/***********************************************************************
523523
**
524-
*/ void Blit_Rect(REBGOB *gob, REBPAR d, REBPAR dsize, REBYTE *src, REBPAR s, REBPAR ssize)
524+
*/ void Blit_Rect(REBGOB *gob, REBXYF d, REBXYF dsize, REBYTE *src, REBXYF s, REBXYF ssize)
525525
/*
526526
** This routine copies a rectangle from a PAN structure to the
527527
** current output device.
@@ -572,7 +572,7 @@ static void Free_Window(REBGOB *gob) {
572572

573573
/***********************************************************************
574574
**
575-
*/ void Blit_Color(REBGOB *gob, REBPAR d, REBPAR dsize, long color)
575+
*/ void Blit_Color(REBGOB *gob, REBXYF d, REBXYF dsize, long color)
576576
/*
577577
** Fill color rectangle, a pixel at a time.
578578
**

0 commit comments

Comments
 (0)