Fix an error on last commit

`count` here is multiplied by 4.
This commit is contained in:
Germano Cavalcante 2018-01-02 23:44:01 -02:00
parent 2a57a46441
commit 060fdb49d6
1 changed files with 1 additions and 1 deletions

View File

@ -7405,7 +7405,7 @@ static void draw_editnurb(
}
#else
/* Same as loop above */
count += (nr / (skip + 1)) + ((nr % (skip + 1)) != 0);
count += 4 * ((nr / (skip + 1)) + ((nr % (skip + 1)) != 0));
#endif
}