- Fixed the display of the current directory size by casting uint64_t for the multiplication (should work for linux too i guess).
- Fixed the macosx xcode project. - More aspect ratios added. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@332 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
4
aide.c
4
aide.c
@@ -371,8 +371,8 @@ void Bouton_Stats(void)
|
||||
|
||||
#ifdef __linux__
|
||||
statfs(Principal_Repertoire_courant,&Informations_Disque);
|
||||
Taille=Informations_Disque.f_bfree * Informations_Disque.f_bsize;
|
||||
#else
|
||||
Taille=(uint64_t) Informations_Disque.f_bfree * (uint64_t) Informations_Disque.f_bsize;
|
||||
#else
|
||||
#if defined(__amigaos4__)||defined(__BEOS__)||defined(__HAIKU__)
|
||||
#else
|
||||
GetDiskFreeSpaceEx(Principal_Repertoire_courant,&tailleU,NULL,NULL);
|
||||
|
||||
Reference in New Issue
Block a user