mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-10 06:31:40 +00:00
Guard memcpy_vfpu behind PSP_VFPU
This commit is contained in:
parent
13f63e09fa
commit
26d21b1c88
2 changed files with 4 additions and 0 deletions
|
@ -48,6 +48,7 @@ typedef struct
|
|||
void Cache_FreeLow (int new_low_hunk);
|
||||
void Cache_FreeHigh (int new_high_hunk);
|
||||
|
||||
#ifdef PSP_VFPU
|
||||
void* memcpy_vfpu( void* dst, void* src, unsigned int size )
|
||||
{
|
||||
u8* src8 = (u8*)src;
|
||||
|
@ -381,6 +382,7 @@ bytecopy:
|
|||
|
||||
return (dst);
|
||||
}
|
||||
#endif //PSP_VFPU
|
||||
|
||||
/*
|
||||
===================
|
||||
|
|
|
@ -135,6 +135,8 @@ void *Cache_Alloc (cache_user_t *c, int size, char *name);
|
|||
|
||||
void Cache_Report (void);
|
||||
|
||||
#ifdef PSP_VFPU
|
||||
void* memcpy_vfpu(void* dst, void* src, unsigned int size);
|
||||
#endif // PSP_VFPU
|
||||
|
||||
#endif /* __ZZONE_H */
|
Loading…
Reference in a new issue