atan2f libc HLE
This commit is contained in:
parent
f6c97963bd
commit
ad83c454a7
|
@ -79,6 +79,7 @@ void LibC_Register(SymbolsResolver* sym) {
|
|||
LIB_FUNCTION("j4ViWNHEgww", "libc", 1, "libc", 1, 1, Emulator::HLE::Libraries::LibC::strlen);
|
||||
LIB_FUNCTION("6sJWiWSRuqk", "libc", 1, "libc", 1, 1, Emulator::HLE::Libraries::LibC::strncpy);
|
||||
LIB_FUNCTION("+P6FRGH4LfA", "libc", 1, "libc", 1, 1, Emulator::HLE::Libraries::LibC::memmove);
|
||||
LIB_FUNCTION("EH-x713A99c", "libc", 1, "libc", 1, 1, Emulator::HLE::Libraries::LibC::atan2f);
|
||||
LIB_OBJ("P330P3dFF68", "libc", 1, "libc", 1, 1, &HLE::Libs::LibC::g_need_sceLibc);
|
||||
|
||||
LIB_FUNCTION("z+P+xCnWLBk", "libc", 1, "libc", 1, 1, _ZdlPv);
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <debug.h>
|
||||
|
||||
#include <cmath>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
|
@ -42,4 +43,6 @@ char* PS4_SYSV_ABI strncpy(char* dest, const char* src, size_t count) { return s
|
|||
|
||||
void* PS4_SYSV_ABI memmove(void* dest, const void* src, std::size_t count) { return std::memmove(dest, src, count); }
|
||||
|
||||
float PS4_SYSV_ABI atan2f(float y, float x) { return std::atan2f(y, x); }
|
||||
|
||||
}; // namespace Emulator::HLE::Libraries::LibC
|
|
@ -20,4 +20,6 @@ int PS4_SYSV_ABI strcmp(const char* str1, const char* str2);
|
|||
size_t PS4_SYSV_ABI strlen(const char* str);
|
||||
char* PS4_SYSV_ABI strncpy(char* dest, const char* src, size_t count);
|
||||
void* PS4_SYSV_ABI memmove(void* dest, const void* src, std::size_t count);
|
||||
float PS4_SYSV_ABI atan2f(float y, float x);
|
||||
|
||||
} // namespace Emulator::HLE::Libraries::LibC
|
Loading…
Reference in New Issue