Dynamic loading of prx functions
Dynamic loading of prx functions
does a prx take up more space than the main prx for example a prx that holds functions for the main not all but some functions is it better to keep the functions in the main or add to the prx speaking space wise which takes up more space a funtion in a prx or one in a main eboot
When the PRX is loaded it only takes up as much space as the filesize of the PRX. Even in an EBOOT only the filesize of data.psp (the PRX/ELF) inside it is used in memory.
If the PRX dynamically allocates memory using malloc or sce alloc functions then that only happens when that code is executed. And you can free the allocated space anyway.
If the PRX dynamically allocates memory using malloc or sce alloc functions then that only happens when that code is executed. And you can free the allocated space anyway.