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:
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;