From 5dca8daf0ad142bcaddb099909478c06a29c7211 Mon Sep 17 00:00:00 2001 From: cpasjuste Date: Thu, 18 Apr 2024 15:35:38 +0200 Subject: [PATCH] vita(pfbneo): fix compilation (missing header) --- .github/workflows/vita-dev.yml | 4 ++-- .github/workflows/vita-release.yml | 4 ++-- src/cores/pfbneo/sources/fbneo/zipfn.cpp | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vita-dev.yml b/.github/workflows/vita-dev.yml index 3f5d7759..fe1b20f7 100644 --- a/.github/workflows/vita-dev.yml +++ b/.github/workflows/vita-dev.yml @@ -8,7 +8,7 @@ on: jobs: build-vita-dev: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -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: | diff --git a/.github/workflows/vita-release.yml b/.github/workflows/vita-release.yml index e9e615c9..41521780 100644 --- a/.github/workflows/vita-release.yml +++ b/.github/workflows/vita-release.yml @@ -9,7 +9,7 @@ on: jobs: build-vita-release: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -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: | diff --git a/src/cores/pfbneo/sources/fbneo/zipfn.cpp b/src/cores/pfbneo/sources/fbneo/zipfn.cpp index ad4704a0..e0a3aa90 100644 --- a/src/cores/pfbneo/sources/fbneo/zipfn.cpp +++ b/src/cores/pfbneo/sources/fbneo/zipfn.cpp @@ -1,4 +1,5 @@ // Zip module +#include #include "burner.h" #ifdef MINIZIP_LIB // minizip from fba not working on windows