We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a76fb1 commit 569011cCopy full SHA for 569011c
Makefile.common
@@ -36,4 +36,4 @@ install: all
36
37
$(INSTALL) instead/src/tiny/tiny2.lua $(DESTDIR)/$(STEADPATH)/stead2/
38
$(INSTALL) instead/src/tiny/tiny3.lua $(DESTDIR)/$(STEADPATH)/stead3/
39
- $(INSTALL) instead/src/tiny/tiny.lua $(DESTDIR)/$(STEADPATH)/
+ $(INSTALL) tiny.lua $(DESTDIR)/$(STEADPATH)/
tiny.lua
@@ -0,0 +1,12 @@
1
+-- some stubs for tiny-instead
2
+-- fake game.gui
3
+-- stat, menu
4
+-- fake audio
5
+-- fake input
6
+
7
+if API == 'stead3' then
8
+ require 'tiny3'
9
+ return
10
+end
11
12
+require 'tiny2'
0 commit comments