Skip to content

Commit

Permalink
Fixed FPU_StackIsEmpty() fallback on Windows side
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBeckebans committed Jun 22, 2024
1 parent c93e84f commit c5e3917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/tools/compilers/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) {}
Expand Down

0 comments on commit c5e3917

Please sign in to comment.