Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-04-30 13:57:35 +0400
committerTon Roosendaal <ton@blender.org>2005-04-30 13:57:35 +0400
commitea3f5794828a2fa4cc3ceaed8ec76419911bbebe (patch)
treeac9a51289c198f271e538f88578c2647ca7d349d /source/blender/src/header_filesel.c
parentfeca8c4644143ece08d0fdd90af480a7f4a9ddc8 (diff)
- file sizes > 4 GB were not correctly displayed in the file window. It
still was using int for calculus... made it using 64 bits ints. - The "disk free" indicator in the header didn't work for OSX, due to a missing #ifdef __APPLE_
Diffstat (limited to 'source/blender/src/header_filesel.c')
-rw-r--r--source/blender/src/header_filesel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/header_filesel.c b/source/blender/src/header_filesel.c
index 2c068aae627..5310683b1e1 100644
--- a/source/blender/src/header_filesel.c
+++ b/source/blender/src/header_filesel.c
@@ -153,7 +153,7 @@ void file_buttons(void)
filesel_statistics(sfile, &totfile, &selfile, &totlen, &sellen);
- sprintf(naam, "Free: %.3f Mb Files: (%d) %d (%.3f) %.3f Mb", df, selfile,totfile, sellen, totlen);
+ sprintf(naam, "Free: %.3f MB Files: (%d) %d (%.3f) %.3f MB", df, selfile,totfile, sellen, totlen);
cpack(0x0);
glRasterPos2i(xco, 5);