mirror of
https://github.com/nzp-team/glquake.git
synced 2025-02-17 17:21:15 +00:00
Merge branch 'main' of https://github.com/nzp-team/glquake
This commit is contained in:
commit
fcbaf93c79
2 changed files with 2 additions and 14 deletions
14
.github/workflows/build-and-release.yml
vendored
14
.github/workflows/build-and-release.yml
vendored
|
@ -20,22 +20,10 @@ jobs:
|
|||
working-directory: ./
|
||||
run: |
|
||||
make -f Makefile
|
||||
- name: Zip and Upload
|
||||
id: zip
|
||||
- name: Zip
|
||||
working-directory: ./
|
||||
run: |
|
||||
zip -r ctr-nzp-3dsx.zip nzportable.3dsx nzportable.smdh
|
||||
curl --upload-file ./ctr-nzp-3dsx.zip https://transfer.sh/ctr-nzp-3dsx.zip > output-log.log
|
||||
echo "::set-output name=zip::$(cat output-log.log)"
|
||||
Unify-and-Release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: Compile-3ds
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Download Archives
|
||||
working-directory: ./
|
||||
run: |
|
||||
curl ${{ needs.Compile-3ds.outputs.o3ds_link }} -o ctr-nzp-3dsx.zip
|
||||
- name: Generate Build Date
|
||||
id: date
|
||||
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M-%S')"
|
||||
|
|
|
@ -1324,7 +1324,7 @@ void SV_Physics_Walk(edict_t *ent)
|
|||
trace_t downtrace;
|
||||
vec3_t groundlocation;
|
||||
VectorCopy(ent->v.origin,groundlocation);
|
||||
groundlocation[2] = -STEPSIZE + ent->v.velocity[2]*host_frametime;
|
||||
groundlocation[2] += -STEPSIZE + ent->v.velocity[2]*host_frametime;
|
||||
|
||||
downtrace = SV_Move(ent->v.origin,ent->v.mins,ent->v.maxs,groundlocation, MOVE_NOMONSTERS,ent);
|
||||
|
||||
|
|
Loading…
Reference in a new issue