VITA: No longer pull latest vitaGL

This commit is contained in:
cypress 2024-06-17 17:29:59 -07:00
parent 99ca44f339
commit 4fa92811be
2 changed files with 4 additions and 5 deletions

View file

@ -12,15 +12,14 @@ jobs:
run: | run: |
apk add bash build-base zip git curl cmake apk add bash build-base zip git curl cmake
vdpm vitashark vdpm vitashark
vdpm vitagl
git clone https://github.com/bythos14/SceShaccCgExt.git git clone https://github.com/bythos14/SceShaccCgExt.git
cd SceShaccCgExt cd SceShaccCgExt
mkdir build && cd build mkdir build && cd build
cmake .. && make -j12 install cmake .. && make -j32 install
- name: Build - name: Build
working-directory: ./ working-directory: ./
run: | run: |
make -j12 -f Makefile.vita make -j32 -f Makefile.vita
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
@ -36,7 +35,7 @@ jobs:
- name: Build - name: Build
working-directory: ./ working-directory: ./
run: | run: |
make -j12 -f Makefile.nx make -j32 -f Makefile.nx
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:

View file

@ -115,7 +115,7 @@ void utf2ascii(char* dst, uint16_t* src){
*dst=0x00; *dst=0x00;
} }
int nzp_main (SceSize, void*) int nzp_main (unsigned int argc, char *argv[])
#else #else
int main(int argc, char *argv[]) int main(int argc, char *argv[])
#endif #endif