This commit is contained in:
2026-08-14 20:45:12 -04:00
parent 61975a24fb
commit 69d8c9434b
23 changed files with 163 additions and 5 deletions
@@ -2,7 +2,7 @@ local kernel=...
local logoFile=""
if kernel.vfs.exists("/etc/hypersplash/logo.txt") then
local file=kernel.vfs.open("/etc/hypersplash/logo.txt")
local file=kernel.vfs.open("/etc/hypersplash/logo.txt", "r")
logoFile=kernel.vfs.read(file, 16384)
kernel.vfs.close(file)
else