Fix an error on last commit
`count` here is multiplied by 4.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user