mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-11 03:03:27 -04:00
Fix sqrtf in ailist files
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
#define FRAMEBUFFER_SIZE (320 * 220 * sizeof(u16))
|
||||
#define UNCACHED(x) ((void *)((u32)(x)|0xa0000000))
|
||||
|
||||
inline float sqrtf(float value)
|
||||
static inline float sqrtf(float value)
|
||||
{
|
||||
float ret;
|
||||
__asm__ ("sqrt.s %0, %1" : "=f"(ret) : "f"(value));
|
||||
|
||||
Reference in New Issue
Block a user