mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 17:19:31 +00:00
Remove backend system and ctruLua support
Since I only use the LÖVE backend anyway, this simplifies the code. Tidied some code.
This commit is contained in:
parent
9f4c03a136
commit
4b75f21e52
17 changed files with 663 additions and 1067 deletions
|
|
@ -1,14 +1 @@
|
|||
local signal
|
||||
|
||||
local p = ...
|
||||
if love then
|
||||
signal = require(p..".backend.love")
|
||||
elseif package.loaded["ctr"] then
|
||||
error("NYI")
|
||||
elseif package.loaded["libretro"] then
|
||||
error("NYI")
|
||||
else
|
||||
error("no backend for ubiquitousse.signal")
|
||||
end
|
||||
|
||||
return signal
|
||||
return require((...)..".signal")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue