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>2003-06-13 20:51:22 +0400
committerTon Roosendaal <ton@blender.org>2003-06-13 20:51:22 +0400
commit2f56a9b0ca93e88370113c2981ad1a2cc8e7837e (patch)
tree4f8f3552c74bcccd70fbf0c0b669848d7791c6c8 /source/blender/src/mainqueue.c
parent2b3bc332e42fdfbf3205efbc08fd8f98bce4dba1 (diff)
- fixed bug #228
dispview mode now doesnt disappear immedately after render oh, what i hated that one!
Diffstat (limited to 'source/blender/src/mainqueue.c')
-rw-r--r--source/blender/src/mainqueue.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/mainqueue.c b/source/blender/src/mainqueue.c
index 697eef1322a..012805db01d 100644
--- a/source/blender/src/mainqueue.c
+++ b/source/blender/src/mainqueue.c
@@ -135,8 +135,7 @@ void mainqenter_ext(unsigned short event, short val, char ascii)
return;
if (nevents<MAXQUEUE) {
- memmove(mainqueue+1, mainqueue, sizeof(*mainqueue)*nevents);
-
+ memmove(mainqueue+1, mainqueue, sizeof(*mainqueue)*nevents);
mainqueue[0].event= event;
mainqueue[0].val= val;
mainqueue[0].ascii= ascii;