Fork of Quakespasm-NX by fgsfdsfgs, client/engine for Nintendo Switch and PS VITA.
Go to file
Peter0x44 befc85915d VITA/NX: Fix implicit function declaration warning
GCC 14 makes this an error.

source/gl_rmisc.c: In function 'R_Init':
source/gl_rmisc.c:256:2: warning: implicit declaration of function 'R_InitOtherTextures'; did you mean 'R_InitTextures'? [-Wimplicit-function-declaration]
  256 |  R_InitOtherTextures ();
      |  ^~~~~~~~~~~~~~~~~~~
      |  R_InitTextures
source/gl_rmisc.c: At top level:
source/gl_rmisc.c:671:6: warning: conflicting types for 'R_InitOtherTextures'
  671 | void R_InitOtherTextures (void)
      |      ^~~~~~~~~~~~~~~~~~~
source/gl_rmisc.c:256:2: note: previous implicit declaration of 'R_InitOtherTextures' was here
  256 |  R_InitOtherTextures ();
      |  ^~~~~~~~~~~~~~~~~~~
2024-06-17 17:18:31 +01:00
.github/workflows YML: ..don't make it at root though 2023-12-27 17:27:27 -05:00
assets NX/VITA: Fix app icons 2023-09-03 12:00:22 -04:00
launcher VITA: Add option to check for updates. 2023-11-30 21:28:03 -05:00
source VITA/NX: Fix implicit function declaration warning 2024-06-17 17:18:31 +01:00
.gitignore [CLIENT] Disable fog for Vita (for now) 2023-02-25 22:06:12 -05:00
LICENSE Initial commit 2022-02-08 14:06:54 -05:00
Makefile.launcher Makefile.launcher: Remove -s for make-fself 2023-07-24 16:16:46 -04:00
Makefile.nx NX/VITA: Total UI Re-Scale/Overhaul 2023-09-01 11:44:39 -04:00
Makefile.vita NX/VITA: Fix app icons 2023-09-03 12:00:22 -04:00
README.md Hotswap for official VitaSDK docker 2022-02-09 11:15:46 -05:00

README.md

Nazi Zombies: Portable Quakespasm

About

This repository contains NZ:P Team's fork of Quakespasm, with support for building to Nintendo Switch (thanks to fgsfdsfgs) and PS VITA (thanks to Rinnegatamante). It contains many enhancements to attempt parity with our fork of dQuakePlus.

Building for Nintendo Switch (Advanced)

Building requires a full install of libnx. Follow the instructions by either installing manually or by using the Docker container linked.

Now that libnx is installed, you can build the Switch binaries:

make -f Makefile.nx

The .NRO will be built at build/nx. We also provide binaries on the Releases page.

Building for PlayStation VITA (Advanced)

Similarly as building for NX, building a .VPK will require the Vita SDK. We recommend gnuton's Docker container, it can be found here.

You can build like so:

make -f Makefile.vita

The .VPK will be built at build/vita. We also provide binaries on the Releases page.