From 85531138704302f0039b40df2fb29a55d8c94d7d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 17 Jul 2017 14:35:47 -0400 Subject: [PATCH] Patched to compile on OpenWatcom. --- src/physfs_lzmasdk.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/physfs_lzmasdk.h b/src/physfs_lzmasdk.h index f42041f..d72ba23 100644 --- a/src/physfs_lzmasdk.h +++ b/src/physfs_lzmasdk.h @@ -1503,7 +1503,10 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) : "0" (function)) ; #endif - + + #elif defined(__WATCOMC__) + *a = *b = *c = *d = 0; /* !!! FIXME: oh well for now. */ + #else int CPUInfo[4];