ref: 7c9437bff3429f9fc6feb6c688e14dae1c81bbd1
parent: 9a21ad603320dba6d17d507a0eb168a772d83c37
author: aap <aap@papnet.eu>
date: Sat Jun 7 19:10:35 EDT 2025
fixed 32 bit compilation
--- a/fs.c
+++ b/fs.c
@@ -169,7 +169,7 @@
#define QID(w, q) ((w)<<8|(q))
#define QWIN(q) ((q)>>8)
-#define QFILE(q) ((q)&0xFF)
+#define QFILE(q) ((int)(q)&0xFF)
#define ID(w) ((w) ? (w)->id : 0)
static void
--
⑨