From 33bd3a815ae5d5bcc2ca235ad19027c786ddaa84 Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Mon, 29 Dec 2025 00:10:32 +0100 Subject: [PATCH] oh damn lua --- scripts/1-rft.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/1-rft.lua b/scripts/1-rft.lua index d64e391..3bcc7b9 100644 --- a/scripts/1-rft.lua +++ b/scripts/1-rft.lua @@ -70,16 +70,16 @@ function load_station_logo(path, id, crc) _Rft_crc_data = string.char(crc16(_Rft_file)) _Rft_crc_mode = 0 elseif crc and crc == 1 then - for i = 1, #_Rft_file, 5*16 do _Rft_crc_data = _Rft_crc_data + string.char(string.byte(_Rft_file, i, 5*16)) end + for i = 1, #_Rft_file, 5*16 do _Rft_crc_data = _Rft_crc_data .. string.char(string.byte(_Rft_file, i, 5*16)) end _Rft_crc_mode = 1 elseif crc and crc == 2 then - for i = 1, #_Rft_file, 5*32 do _Rft_crc_data = _Rft_crc_data + string.char(string.byte(_Rft_file, i, 5*32)) end + for i = 1, #_Rft_file, 5*32 do _Rft_crc_data = _Rft_crc_data .. string.char(string.byte(_Rft_file, i, 5*32)) end _Rft_crc_mode = 2 elseif crc and crc == 3 then - for i = 1, #_Rft_file, 5*64 do _Rft_crc_data = _Rft_crc_data + string.char(string.byte(_Rft_file, i, 5*64)) end + for i = 1, #_Rft_file, 5*64 do _Rft_crc_data = _Rft_crc_data .. string.char(string.byte(_Rft_file, i, 5*64)) end _Rft_crc_mode = 3 elseif crc and crc == 4 then - for i = 1, #_Rft_file, 5*128 do _Rft_crc_data = _Rft_crc_data + string.char(string.byte(_Rft_file, i, 5*128)) end + for i = 1, #_Rft_file, 5*128 do _Rft_crc_data = _Rft_crc_data .. string.char(string.byte(_Rft_file, i, 5*128)) end end if #_Rft_file > 262143 then error("The file is too large", 2) end