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:
authorJoshua Leung <aligorith@gmail.com>2007-11-15 01:44:30 +0300
committerJoshua Leung <aligorith@gmail.com>2007-11-15 01:44:30 +0300
commit41c675802734b8ab683065ee2688c4012f0fd26a (patch)
tree28296b6cb284bad63268932f8fbf8a05cd705d57 /source/blender/blenloader
parenta219d6e238949f68edfdaa7c8350fb39df454c5b (diff)
Just a little comment commit explaining where "samples" comes from...
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/writefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 1c5d520d075..bf70098c7b5 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -1757,7 +1757,7 @@ static void write_sounds(WriteData *wd, ListBase *idbase)
// set all samples to unsaved status
- sample = samples->first;
+ sample = samples->first; // samples is a global defined in sound.c
while (sample) {
sample->flags |= SAMPLE_NEEDS_SAVE;
sample = sample->id.next;