From 51e0321709a188a85af82ad395418344816074f6 Mon Sep 17 00:00:00 2001 From: airstruck Date: Mon, 8 Feb 2016 11:57:51 -0500 Subject: [PATCH] Remove printf from backend --- luigi/backend/ffisdl.lua | 2 -- luigi/backend/love.lua | 2 -- 2 files changed, 4 deletions(-) diff --git a/luigi/backend/ffisdl.lua b/luigi/backend/ffisdl.lua index eca10c1..cc4b928 100644 --- a/luigi/backend/ffisdl.lua +++ b/luigi/backend/ffisdl.lua @@ -184,8 +184,6 @@ Backend.print = function (text, x, y) sdl.renderCopy(renderer, texture, nil, sdl.Rect(x, y, surface.w, surface.h)) end -Backend.printf = Backend.print - Backend.getClipboardText = function () return ffi.string(sdl.getClipboardText()) end diff --git a/luigi/backend/love.lua b/luigi/backend/love.lua index 8acdd05..364ba00 100644 --- a/luigi/backend/love.lua +++ b/luigi/backend/love.lua @@ -35,8 +35,6 @@ Backend.drawRectangle = love.graphics.rectangle Backend.print = love.graphics.print -Backend.printf = love.graphics.printf - Backend.getClipboardText = love.system.getClipboardText Backend.setClipboardText = love.system.setClipboardText