You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/linux-toolchain.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,4 @@ jobs:
26
26
- name: Build OpenBIOS with it
27
27
run: make -C src/mips/openbios -j 6 all
28
28
- name: Build psyqo examples with it
29
-
run: for d in src/mips/psyqo/examples/* src/mips/psyqo-paths/examples/* src/mips/psyqo-lua/examples/*; do make -C $d -j 6 all TEST=true; done
29
+
run: for d in src/mips/psyqo/examples/* src/mips/psyqo-paths/examples/* src/mips/psyqo-lua/examples/*; do if [ -d "$d" ]; then make -C "$d" -j 6 all TEST=true; fi; done
The following list contains community-made examples which have made use of various aspects of psyqo.
4
+
5
+
| Example | Author | Description
6
+
| :--- | :--- | :---
7
+
| [psyqo-cdrom-cube](https://github.com/Forceh91/psyqo-cdrom-cube) | [Forceh91](https://github.com/forceh91) | This example attempts to give a real-world example of loading a model off of the CD-ROM for rendering
0 commit comments