Skip to content

Commit

Permalink
Merge branch 'andrei-drexler:master' into aspect-ratio-desktop-fullsc…
Browse files Browse the repository at this point in the history
…reen
  • Loading branch information
KurtLoeffler authored May 23, 2024
2 parents 3135fc0 + b444798 commit f15b9fa
Show file tree
Hide file tree
Showing 64 changed files with 11,934 additions and 1,045 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ root = true
[*]
indent_style = tab
indent_size = 4
cpp_space_before_function_open_parenthesis = insert
2 changes: 1 addition & 1 deletion .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
compiler: ["clang", "gcc"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt update && sudo apt install libcurl4-openssl-dev libmad0-dev libsdl2-dev libvorbis-dev
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: brew install libvorbis mad sdl2
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
platform: [x64, Win32]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set environment variables
run: |
$gitrev = $(git describe --always)
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
copy Quakespasm-Music.txt $zipdir
copy LICENSE.txt $zipdir
- name: Upload archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_ARTIFACT }}
path: artifact/*
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Windows/VisualStudio/.vs/
Windows/VisualStudio/Build-*/
Windows/VisualStudio/ironwail.vcxproj.user
Quake/*.o
Quake/*.d
Quake/*.res
Expand Down
2 changes: 2 additions & 0 deletions Quake/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ CPUFLAGS=
LDFLAGS?=
DFLAGS ?=
CFLAGS ?= -Wall -Wno-trigraphs
CFLAGS += -D_FILE_OFFSET_BITS=64
CFLAGS += $(call check_gcc,-std=gnu11,)
CFLAGS += $(call check_gcc,-Werror=format,)
CFLAGS += $(CPUFLAGS)
ifneq ($(DEBUG),0)
DFLAGS += -DDEBUG
Expand Down
2 changes: 2 additions & 0 deletions Quake/Makefile.w32
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ CPUFLAGS=
LDFLAGS?= -m32 -mwindows -static-libgcc
DFLAGS ?=
CFLAGS ?= -m32 -Wall -Wno-trigraphs
CFLAGS += -D_FILE_OFFSET_BITS=64
CFLAGS += $(call check_gcc,-std=gnu11,)
CFLAGS += $(call check_gcc,-Werror=format,)
CFLAGS += $(CPUFLAGS)
ifneq ($(DEBUG),0)
DFLAGS += -DDEBUG
Expand Down
2 changes: 2 additions & 0 deletions Quake/Makefile.w64
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ CPUFLAGS=
LDFLAGS?= -m64 -mwindows -static-libgcc
DFLAGS ?=
CFLAGS ?= -m64 -Wall -Wno-trigraphs
CFLAGS += -D_FILE_OFFSET_BITS=64
CFLAGS += $(call check_gcc,-std=gnu11,)
CFLAGS += $(call check_gcc,-Werror=format,)
CFLAGS += $(CPUFLAGS)
ifneq ($(DEBUG),0)
DFLAGS += -DDEBUG
Expand Down
Loading

0 comments on commit f15b9fa

Please sign in to comment.