mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-23 12:22:15 +00:00
VITA: No longer pull latest vitaGL
This commit is contained in:
parent
99ca44f339
commit
4fa92811be
2 changed files with 4 additions and 5 deletions
7
.github/workflows/build-and-release.yml
vendored
7
.github/workflows/build-and-release.yml
vendored
|
@ -12,15 +12,14 @@ jobs:
|
|||
run: |
|
||||
apk add bash build-base zip git curl cmake
|
||||
vdpm vitashark
|
||||
vdpm vitagl
|
||||
git clone https://github.com/bythos14/SceShaccCgExt.git
|
||||
cd SceShaccCgExt
|
||||
mkdir build && cd build
|
||||
cmake .. && make -j12 install
|
||||
cmake .. && make -j32 install
|
||||
- name: Build
|
||||
working-directory: ./
|
||||
run: |
|
||||
make -j12 -f Makefile.vita
|
||||
make -j32 -f Makefile.vita
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
|
@ -36,7 +35,7 @@ jobs:
|
|||
- name: Build
|
||||
working-directory: ./
|
||||
run: |
|
||||
make -j12 -f Makefile.nx
|
||||
make -j32 -f Makefile.nx
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
|
|
|
@ -115,7 +115,7 @@ void utf2ascii(char* dst, uint16_t* src){
|
|||
*dst=0x00;
|
||||
}
|
||||
|
||||
int nzp_main (SceSize, void*)
|
||||
int nzp_main (unsigned int argc, char *argv[])
|
||||
#else
|
||||
int main(int argc, char *argv[])
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue