mirror of
https://github.com/libretro/libretro-tyrquake.git
synced 2025-02-23 01:11:45 +00:00
Remove unused floating point exception handling code
This commit is contained in:
parent
1bb07a24a0
commit
97f26433eb
@ -254,12 +254,6 @@ Sys_LineRefresh(void)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
floating_point_exception_handler(int whatever)
|
||||
{
|
||||
// Sys_Warn("floating point exception\n");
|
||||
signal(SIGFPE, floating_point_exception_handler);
|
||||
}
|
||||
|
||||
// FIXME - need this at all? (see QW)
|
||||
char *
|
||||
@ -308,7 +302,6 @@ main(int c, char **v)
|
||||
quakeparms_t parms;
|
||||
int j;
|
||||
|
||||
// signal(SIGFPE, floating_point_exception_handler);
|
||||
signal(SIGFPE, SIG_IGN);
|
||||
|
||||
memset(&parms, 0, sizeof(parms));
|
||||
|
@ -227,13 +227,6 @@ Sys_DoubleTime(void)
|
||||
// Sleeps for microseconds
|
||||
// =======================================================================
|
||||
|
||||
static void
|
||||
floating_point_exception_handler(int whatever)
|
||||
{
|
||||
// Sys_Warn("floating point exception\n");
|
||||
signal(SIGFPE, floating_point_exception_handler);
|
||||
}
|
||||
|
||||
#ifndef USE_X86_ASM
|
||||
void
|
||||
Sys_HighFPPrecision(void)
|
||||
@ -253,7 +246,6 @@ main(int c, char **v)
|
||||
quakeparms_t parms;
|
||||
int j;
|
||||
|
||||
// signal(SIGFPE, floating_point_exception_handler);
|
||||
signal(SIGFPE, SIG_IGN);
|
||||
|
||||
memset(&parms, 0, sizeof(parms));
|
||||
|
Loading…
x
Reference in New Issue
Block a user