1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
*** drawcard.c.orig Thu Sep 16 00:47:18 1993
--- drawcard.c Thu Sep 16 00:41:29 1993
***************
*** 183,194 ****
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, bits_p);
! XSetStipple(dpy, cheap_gc, bits);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, mask_p);
! XSetStipple(dpy, cheap_gc, mask);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
--- 183,194 ----
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, bits_p);
! XSetStipple(dpy, cheap_gc, mask);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
XSetForeground(dpy, cheap_gc, mask_p);
! XSetStipple(dpy, cheap_gc, bits);
XFillRectangle (dpy, cards[i].bits, cheap_gc, 0, 0,
WIDTH, HEIGHT);
*** roll.c.orig Thu Apr 2 06:15:57 1992
--- roll.c Thu Sep 16 00:36:38 1993
***************
*** 7,13 ****
# define reg register
! # if (! defined ultrix && ! defined mips && ! defined vax)
# define MAXRAND 32767L
roll(ndie, nsides)
--- 7,13 ----
# define reg register
! # if (! defined ultrix && ! defined mips && ! defined vax && ! defined __386BSD__ && ! defined __FreeBSD__)
# define MAXRAND 32767L
roll(ndie, nsides)
|