From e69659b2adab6582eab0478eb3c8821fa43aa416 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Wed, 26 Jul 2023 05:20:55 -0400 Subject: [PATCH] Changed the order of the image extensions list To avoid Funny Stuff --- load/graphics.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load/graphics.lua b/load/graphics.lua index b2f3e12..154b886 100644 --- a/load/graphics.lua +++ b/load/graphics.lua @@ -4,7 +4,7 @@ named_backgrounds = { } current_playing_bgs = {} extended_bgs = {} -image_formats = {".png", ".jpg"} +image_formats = {".jpg", ".png"} bgpath = "res/backgrounds/" dir = love.filesystem.getDirectoryItems(bgpath)