diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-10-16 23:25:09 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-10-16 23:25:09 -0700 |
commit | 0f115e4501d26617336de18219127bbdb37a8748 (patch) | |
tree | c7523dfd137fe9537e68867cd3e5dff3a38f5d0b /app.lua | |
parent | 80ba5851e7332bccf7fa0db455625c365063680c (diff) | |
parent | f61976c61a29a82feaec740ba09bbec51ce55ba9 (diff) | |
download | text.love-0f115e4501d26617336de18219127bbdb37a8748.tar.gz |
Merge lines.love
Diffstat (limited to 'app.lua')
-rw-r--r-- | app.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app.lua b/app.lua index 5e3301f..cf89a37 100644 --- a/app.lua +++ b/app.lua @@ -368,10 +368,6 @@ function App.color(color) love.graphics.setColor(color.r, color.g, color.b, color.a) end -function colortable(app_color) - return {app_color.r, app_color.g, app_color.b, app_color.a} -end - -- prepend file/line/test function prepend_debug_info_to_test_failure(test_name, err) local err_without_line_number = err:gsub('^[^:]*:[^:]*: ', '') |