Fix strict mode validation failure in latest N64Recomp version and update N64Recomp commit in github workflow
This commit is contained in:
parent
af1404b83d
commit
d99a84f04f
|
@ -9,7 +9,7 @@ on:
|
||||||
N64RECOMP_COMMIT:
|
N64RECOMP_COMMIT:
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
default: 'f8d439aeee6048b7365d1cb3bcd2578ec27a0288'
|
default: '5b17bf8bb556d2544c6161487232a455eae8f188'
|
||||||
DXC_CHECKSUM:
|
DXC_CHECKSUM:
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
@ -64,7 +64,7 @@ jobs:
|
||||||
|
|
||||||
# Build N64Recomp & RSPRecomp
|
# Build N64Recomp & RSPRecomp
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
||||||
cmake --build cmake-build --config Release --target N64Recomp -j $(nproc)
|
cmake --build cmake-build --config Release --target N64RecompCLI -j $(nproc)
|
||||||
cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc)
|
cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc)
|
||||||
|
|
||||||
# Copy N64Recomp & RSPRecomp to root directory
|
# Copy N64Recomp & RSPRecomp to root directory
|
||||||
|
@ -160,7 +160,7 @@ jobs:
|
||||||
|
|
||||||
# Build N64Recomp & RSPRecomp
|
# Build N64Recomp & RSPRecomp
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
||||||
cmake --build cmake-build --config Release --target N64Recomp -j $(nproc)
|
cmake --build cmake-build --config Release --target N64RecompCLI -j $(nproc)
|
||||||
cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc)
|
cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc)
|
||||||
|
|
||||||
# Copy N64Recomp & RSPRecomp to root directory
|
# Copy N64Recomp & RSPRecomp to root directory
|
||||||
|
@ -234,7 +234,7 @@ jobs:
|
||||||
$cpuCores = (Get-CimInstance -ClassName Win32_Processor).NumberOfLogicalProcessors
|
$cpuCores = (Get-CimInstance -ClassName Win32_Processor).NumberOfLogicalProcessors
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build
|
||||||
cmake --build cmake-build --config Release --target N64Recomp -j $cpuCores
|
cmake --build cmake-build --config Release --target N64RecompCLI -j $cpuCores
|
||||||
cmake --build cmake-build --config Release --target RSPRecomp -j $cpuCores
|
cmake --build cmake-build --config Release --target RSPRecomp -j $cpuCores
|
||||||
|
|
||||||
# Copy N64Recomp & RSPRecomp to root directory
|
# Copy N64Recomp & RSPRecomp to root directory
|
||||||
|
|
|
@ -1266,7 +1266,7 @@ extern Gfx ovl_En_Tanron1_DL_001888[];
|
||||||
extern Gfx ovl_En_Tanron1_DL_001900[];
|
extern Gfx ovl_En_Tanron1_DL_001900[];
|
||||||
|
|
||||||
// @recomp Patched to interpolate the moths that circle torches.
|
// @recomp Patched to interpolate the moths that circle torches.
|
||||||
void func_80BB5AAC(EnTanron1* this, PlayState* play) {
|
RECOMP_PATCH void func_80BB5AAC(EnTanron1* this, PlayState* play) {
|
||||||
EnTanron1Struct* ptrBase = &this->unk_160[0];
|
EnTanron1Struct* ptrBase = &this->unk_160[0];
|
||||||
s16 i;
|
s16 i;
|
||||||
u8 flag = 0;
|
u8 flag = 0;
|
||||||
|
|
Loading…
Reference in New Issue