diff --git a/scene/gamemode_config.lua b/scene/gamemode_config.lua index 3a297e5..248a5ea 100644 --- a/scene/gamemode_config.lua +++ b/scene/gamemode_config.lua @@ -64,15 +64,15 @@ function GamemodeConfigScene:render() local next_index = Mod1(curr_index+1, #option[3]) love.graphics.setColor(1, 1, 1, 0.5) - love.graphics.printf(option[3][prev_index], + love.graphics.printf("<<< "..option[3][prev_index], 100 + 110 * 1, 100 + i * 20, 100, 'center') love.graphics.setColor(1, 1, 1, 1) - love.graphics.printf("< " .. option[3][curr_index] .. " >", + love.graphics.printf(option[3][curr_index], 100 + 110 * 2.5, 100 + i * 20, 100, 'center') love.graphics.setColor(1, 1, 1, 0.5) - love.graphics.printf(option[3][next_index], + love.graphics.printf(option[3][next_index].." >>>", 100 + 110 * 4, 100 + i * 20, 100, 'center') love.graphics.setColor(1, 1, 1, 1)