From 47e687900e0a47ef728b21b4f594ea316b9e1710 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sat, 18 Aug 2007 00:03:33 +0000 Subject: [PATCH] Missed a backslash in a string, thanks Gundamn. Originally committed to SVN as r1509. --- automation/demos/future-windy-blur.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/demos/future-windy-blur.lua b/automation/demos/future-windy-blur.lua index 17fd6f777..7b651d531 100644 --- a/automation/demos/future-windy-blur.lua +++ b/automation/demos/future-windy-blur.lua @@ -35,7 +35,7 @@ end function do_fx(subs, meta, line) local l = table.copy(line) - l.text = string.format("{\pos(%d,%d)\\1c%s\\1a&HFF&\\3a&HFF&\\4a&HFF&\\t(0,200,\\1a&H00&\\3a&H00&\\4a&H00&)\\t(%d,%d,\\1a&HFF&\\3a&HFF&\\4a&HFF&)}%s", meta.res_x/2, line.styleref.margin_t, line.styleref.color2, line.duration+200, line.duration+400, line.text_stripped) + l.text = string.format("{\\pos(%d,%d)\\1c%s\\1a&HFF&\\3a&HFF&\\4a&HFF&\\t(0,200,\\1a&H00&\\3a&H00&\\4a&H00&)\\t(%d,%d,\\1a&HFF&\\3a&HFF&\\4a&HFF&)}%s", meta.res_x/2, line.styleref.margin_t, line.styleref.color2, line.duration+200, line.duration+400, line.text_stripped) l.start_time = l.start_time - 200 l.end_time = l.end_time + 200 l.layer = 1