mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
make sure exceptions are masked
This commit is contained in:
parent
ad08ff7492
commit
5f3f4b6f69
2 changed files with 2 additions and 0 deletions
|
@ -72,6 +72,7 @@ int Sys_TimeID (void);
|
||||||
void Sys_LowFPPrecision (void);
|
void Sys_LowFPPrecision (void);
|
||||||
void Sys_HighFPPrecision (void);
|
void Sys_HighFPPrecision (void);
|
||||||
void Sys_SetFPCW (void);
|
void Sys_SetFPCW (void);
|
||||||
|
void MaskExseptions (void);
|
||||||
|
|
||||||
// send text to the console
|
// send text to the console
|
||||||
|
|
||||||
|
|
|
@ -66,6 +66,7 @@ qboolean isDedicated = false;
|
||||||
void
|
void
|
||||||
Sys_Init (void)
|
Sys_Init (void)
|
||||||
{
|
{
|
||||||
|
MaskExceptions ();
|
||||||
#ifdef USE_INTEL_ASM
|
#ifdef USE_INTEL_ASM
|
||||||
Sys_SetFPCW ();
|
Sys_SetFPCW ();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue