21 lines
481 B
Plaintext
21 lines
481 B
Plaintext
--- score.c.orig Sun Jul 5 20:01:39 1998
|
|
+++ score.c Sun Jul 5 18:56:23 1998
|
|
@@ -20,7 +20,7 @@
|
|
#define HILABEL (SCOREPOS+20)
|
|
#define HIPOS (HILABEL+15)
|
|
|
|
-PaintScore()
|
|
+void PaintScore()
|
|
{
|
|
char scorestring[8];
|
|
XDrawImageString(dpy, labelwindow, scoregc, 0, SCORELABEL, "Score", 5);
|
|
@@ -39,7 +39,7 @@
|
|
XDrawImageString(dpy, labelwindow, scoregc, 0, HIPOS, scorestring, 7);
|
|
}
|
|
|
|
-InitScore()
|
|
+void InitScore()
|
|
{
|
|
score = 0;
|
|
if (hiscore == 0) hiscore = -1;
|