- File operations work on "data/" folder or ".jrf" file

- [NEW] fopenres() works on .jrf resources, fopen on normal files
This commit is contained in:
2022-10-11 17:58:03 +02:00
parent a74ca5033c
commit b282bd05d5
8 changed files with 185 additions and 24 deletions
+5
View File
@@ -0,0 +1,5 @@
title=HOLA MINI
width=160
height=120
zoom=3
files=game.lua
+12
View File
@@ -0,0 +1,12 @@
x=0
function _init()
text="HOLA MINI"
end
function _update()
cls(20)
print(text,x,60)
x=x+1
if x>160 then x=-strlen(text)*4 end
end