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:
authorMartin Poirier <theeth@yahoo.com>2005-05-15 09:41:55 +0400
committerMartin Poirier <theeth@yahoo.com>2005-05-15 09:41:55 +0400
commit1533b6fd32005b30de1891be55bd6439733ffc44 (patch)
tree9fb57361c3bc9bdd32139e758c204b65bca875cb /source/blender/src/drawtext.c
parent35df3742974791736595e77a8898b2faadd4ec15 (diff)
Variable declaration in the middle of some code. (MSVC complained, as it should)
Diffstat (limited to 'source/blender/src/drawtext.c')
-rw-r--r--source/blender/src/drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawtext.c b/source/blender/src/drawtext.c
index b0130de4b6f..144938b36ad 100644
--- a/source/blender/src/drawtext.c
+++ b/source/blender/src/drawtext.c
@@ -536,9 +536,9 @@ static int text_draw(SpaceText *st, char *str, int cshift, int maxwidth, int dra
if (draw) {
if(st->showsyntax) {
- format = format+cshift;
int amount, a;
char out[2];
+ format = format+cshift;
amount = strlen(in);