mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
*fixed settings paths creation bug
*fixed crash when installing on ntfs *fixed a few bugs with language setting for games
This commit is contained in:
parent
89fc757642
commit
9bcb476262
@ -17,7 +17,8 @@ extern __inline__ void* mem_align (size_t a, size_t size) {
|
||||
}
|
||||
|
||||
extern __inline__ void mem_free (void* mem) {
|
||||
MEM2_free(mem);
|
||||
//using normal free, it will decide which free to use (just to be on the safe side)
|
||||
free(mem);
|
||||
}
|
||||
|
||||
#endif /* _MEM_ALLOCATE_H */
|
||||
|
@ -43,7 +43,8 @@ static inline void* _FAT_mem_align (size_t size) {
|
||||
}
|
||||
|
||||
static inline void _FAT_mem_free (void* mem) {
|
||||
MEM2_free(mem);
|
||||
//using normal free, it will decide which free to use (just to be on the safe side)
|
||||
free(mem);
|
||||
}
|
||||
|
||||
#endif // _MEM_ALLOCATE_H
|
||||
|
@ -38,7 +38,8 @@ static inline void* ntfs_align (size_t size)
|
||||
|
||||
static inline void ntfs_free (void* mem)
|
||||
{
|
||||
MEM2_free(mem);
|
||||
//using normal free, it will decide which free to use (just to be on the safe side)
|
||||
free(mem);
|
||||
}
|
||||
|
||||
#endif /* _MEM_ALLOCATE_H */
|
||||
|
Loading…
Reference in New Issue
Block a user