diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-09-24 15:28:45 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-09-24 15:28:45 +0100 |
commit | dc7732b6f073d5450657d94c815ca445a1a08fbd (patch) | |
tree | 03bacef1833854a6b229aa80d57911402959c0a1 /comp/lucas-standen-NEA/code2 | |
parent | 997fd49c81a86696db6f62ce8c5bdde038c7cebb (diff) |
fixed some demos
Diffstat (limited to 'comp/lucas-standen-NEA/code2')
-rw-r--r-- | comp/lucas-standen-NEA/code2/examples/Makefile | 1 | ||||
-rwxr-xr-x | comp/lucas-standen-NEA/code2/examples/raylib_example | bin | 1085488 -> 1085488 bytes | |||
-rw-r--r-- | comp/lucas-standen-NEA/code2/examples/raylib_example.zpy | 2 | ||||
-rwxr-xr-x | comp/lucas-standen-NEA/code2/examples/str_example | bin | 24840 -> 24856 bytes | |||
-rw-r--r-- | comp/lucas-standen-NEA/code2/examples/str_example.zpy | 1 |
5 files changed, 2 insertions, 2 deletions
diff --git a/comp/lucas-standen-NEA/code2/examples/Makefile b/comp/lucas-standen-NEA/code2/examples/Makefile index 04bb54c..13178a5 100644 --- a/comp/lucas-standen-NEA/code2/examples/Makefile +++ b/comp/lucas-standen-NEA/code2/examples/Makefile @@ -2,6 +2,5 @@ all: zpy raylib_example.zpy -o raylib_example -f -lraylib -f -lm -i raylib.h zpy fib_example.zpy -o fib_example -f -ggdb zpy str_example.zpy -o str_example -f -ggdb - zpy guestbook.zpy -o guestbook -f -ggdb clean: rm -rf fib_example raylib_example str_example diff --git a/comp/lucas-standen-NEA/code2/examples/raylib_example b/comp/lucas-standen-NEA/code2/examples/raylib_example Binary files differindex 28f2a9d..74d52ed 100755 --- a/comp/lucas-standen-NEA/code2/examples/raylib_example +++ b/comp/lucas-standen-NEA/code2/examples/raylib_example diff --git a/comp/lucas-standen-NEA/code2/examples/raylib_example.zpy b/comp/lucas-standen-NEA/code2/examples/raylib_example.zpy index 10f326e..90ef8b8 100644 --- a/comp/lucas-standen-NEA/code2/examples/raylib_example.zpy +++ b/comp/lucas-standen-NEA/code2/examples/raylib_example.zpy @@ -1,6 +1,6 @@ (defun main int) (InitWindow 800 800 "test_test") - (SetTargetFPS 60) + (SetTargetFPS 30) (let img:Image (LoadImage "dvd.png")) (let tex:Texture (LoadTextureFromImage img)) diff --git a/comp/lucas-standen-NEA/code2/examples/str_example b/comp/lucas-standen-NEA/code2/examples/str_example Binary files differindex ede98e9..8f86844 100755 --- a/comp/lucas-standen-NEA/code2/examples/str_example +++ b/comp/lucas-standen-NEA/code2/examples/str_example diff --git a/comp/lucas-standen-NEA/code2/examples/str_example.zpy b/comp/lucas-standen-NEA/code2/examples/str_example.zpy index 9b67f5f..7311660 100644 --- a/comp/lucas-standen-NEA/code2/examples/str_example.zpy +++ b/comp/lucas-standen-NEA/code2/examples/str_example.zpy @@ -2,4 +2,5 @@ (let str:string* (String "hello")) (printchar str->_str[0]) (str->free str) + (printstr "<first_letter\n") (endfun) |