]> git.sesse.net Git - ultimatescore/commitdiff
Trøndisk theming.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Oct 2021 08:42:02 +0000 (10:42 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Oct 2021 08:42:02 +0000 (10:42 +0200)
nageru/ultimate.lua

index c0ebc95e8fa91d83ca18e71fb096a60eaef2b43f..ad67ed63931aee7345679fbcebfc2f5e1479797e 100644 (file)
@@ -60,7 +60,7 @@ local bg_video = VideoInput.new(cef_path .. "/flow-720.mp4", Nageru.VIDEO_FORMAT
 local iptv_video = VideoInput.new(futatabi_server, Nageru.VIDEO_FORMAT_YCBCR)
 iptv_video:change_rate(10.0)
 
-local static_image = ImageInput.new(cef_path .. "/nageru/dsn-bg.png")
+local static_image = ImageInput.new(cef_path .. "/nageru/tfk_pause.png")
 local first_frame = true
 local multiviewer_enabled = false
 
@@ -202,7 +202,7 @@ local simple_scene = make_simple_scene()
 -- Load all the stinger frames.
 local stinger_images = {}
 for idx=0,24 do
-       local filename = cef_path .. "/stinger/esk-blur" .. string.rep("0", 3 - string.len(tostring(idx))) .. idx .. ".png"
+       local filename = cef_path .. "/stinger/blur" .. string.rep("0", 3 - string.len(tostring(idx))) .. idx .. ".png"
        stinger_images[idx] = ImageInput.new(filename)
 end