Skip to content

Commit

Permalink
vita(pfbneo): fix compilation (missing header)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cpasjuste committed Apr 18, 2024
1 parent 7dcb506 commit 5dca8da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vita-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:

build-vita-dev:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand All @@ -35,7 +35,7 @@ jobs:
export VITASDK=/usr/local/vitasdk
mkdir cmake-build && cd cmake-build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug .. \
-DPLATFORM_VITA=ON -DOPTION_LIGHT=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF
-DPLATFORM_VITA=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_BOX2D=OFF -DOPTION_MPV_PLAYER=OFF
- name: Build pfbneo
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vita-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:

build-vita-release:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
Expand All @@ -36,7 +36,7 @@ jobs:
export VITASDK=/usr/local/vitasdk
mkdir cmake-build && cd cmake-build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. \
-DPLATFORM_VITA=ON -DOPTION_LIGHT=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_MPV_PLAYER=OFF
-DPLATFORM_VITA=ON -DOPTION_BUILTIN_MINIZIP=ON -DOPTION_BOX2D=OFF -DOPTION_MPV_PLAYER=OFF
- name: Build pfbneo
run: |
Expand Down
1 change: 1 addition & 0 deletions src/cores/pfbneo/sources/fbneo/zipfn.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Zip module
#include <zlib.h>
#include "burner.h"
#ifdef MINIZIP_LIB
// minizip from fba not working on windows
Expand Down

0 comments on commit 5dca8da

Please sign in to comment.