mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-01 05:30:58 +00:00
Merge pull request #750 from smcv/arm-softfloat
backends: Only enable ARM "RunFast" mode when targeting hardware FPU
This commit is contained in:
commit
3f32958493
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ void Sys_SetupFPU(void) {
|
|||
}
|
||||
#else
|
||||
void Sys_SetupFPU(void) {
|
||||
#if defined(__arm__)
|
||||
#if defined(__arm__) && defined(__ARM_PCS_VFP)
|
||||
// Enable RunFast mode if not enabled already
|
||||
static const unsigned int bit = 0x04086060;
|
||||
static const unsigned int fpscr = 0x03000000;
|
||||
|
|
Loading…
Reference in a new issue