Fixed FPU_StackIsEmpty() fallback on Windows side

This commit is contained in:
Robert Beckebans 2024-06-22 17:02:14 +02:00
parent c93e84f0a3
commit c5e3917c80

View file

@ -507,7 +507,7 @@ public:
}
virtual bool FPU_StackIsEmpty()
{
return NULL;
return false;
}
virtual void FPU_SetFTZ( bool enable ) {}
virtual void FPU_SetDAZ( bool enable ) {}