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:
authorDaniel Dunbar <daniel@zuster.org>2005-07-28 00:16:41 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-28 00:16:41 +0400
commit4b1588e277d6a6e6bc7dc9553652d2ca4aad2d73 (patch)
tree39310f93a57a9d3cbac4be639723a5aed2eb6291 /source/blender/blenlib
parent410512e2656007587cc1671c71c37cbc0b5bda4f (diff)
- update storage.c to use standard time codes (should fix issue
with MSVS 8) - broke mesh_create_shadedColors out of shadeDispList, used to build vertex colors for mesh in vpaint as well (also fixed bug where they were not initialized correctly for subsurfs) - added modifier_copyData and modifier_findByType functions - change editmode modifiers to only calculate if Realtime and Editmode bits are both set, makes more sense for copying modifiers - update object_copy to correctly copy modifiers - removed duplicate redefinition of ME_ attributes in python, this is a horrible idea, why was it done in the first place? - update armature auto vertex group code to check for subsurf in modifier stack - fixed flip_subdivision to work with move to modifier stack - added copymenu_modifiers, can copy all modifiers or just data from first modifier of a certain type (not sure how to deal with multiple modifiers of same type... not a big issue though I think)
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/storage.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 5123098e522..8b45bfe0420 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -393,12 +393,7 @@ void BLI_adddirstrings()
else if(num1) sprintf(files[num].size, "%15d", num1);
else sprintf(files[num].size, "0");
-#if 1400 >= _MSC_VER
- //visual studio 8 crashes on 'R', todo: check for replacement
- strftime(datum, 32, "%d-%b-%y ", tm);
-#else
- strftime(datum, 32, "%d-%b-%y %R", tm);
-#endif
+ strftime(datum, 32, "%d-%b-%y %H:%M", tm);
if (st_size < 1000) {
sprintf(size, "%10d", (int) st_size);