From c5e3917c80a081d5962f4cf292464b017735bbd2 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Sat, 22 Jun 2024 17:02:14 +0200 Subject: [PATCH] Fixed FPU_StackIsEmpty() fallback on Windows side --- neo/tools/compilers/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/tools/compilers/main.cpp b/neo/tools/compilers/main.cpp index de811e3639..253cc6c0a0 100644 --- a/neo/tools/compilers/main.cpp +++ b/neo/tools/compilers/main.cpp @@ -507,7 +507,7 @@ class idSysCmdline : public idSys } virtual bool FPU_StackIsEmpty() { - return NULL; + return false; } virtual void FPU_SetFTZ( bool enable ) {} virtual void FPU_SetDAZ( bool enable ) {}