Skip to content
Permalink
Browse files
remove double application of text speedup
script dumped from 4.15 already has speed parameters adjusted

this makes it so more of these parameters actually have some visible
effect ingame instead of almost every value going to zero
  • Loading branch information
dackst committed Mar 22, 2021
1 parent 7334a92 commit 644ea82f26a31f54e0a6b540a31a67202a1cb1b0
Showing with 1 addition and 1 deletion.
  1. +1 −1 script/scriptinsert.py
@@ -105,7 +105,7 @@ def adjust_speed(self, origdata):
#speed (characters per frame) is time divided by length
#Rounds down. You could try rounding nearest.
#I found rounding down gives a better experience. YMMV.
new_speed = int(orig_time / new_len) - 1
new_speed = int(orig_time / new_len)
if new_speed < 0: #0 is the fastest it can go (1 character per frame)
new_speed = 0

0 comments on commit 644ea82

Please sign in to comment.