From e45c7fd1f7d6479c924c82eb3d63019ed2875c4e Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 3 Apr 2022 21:31:13 +1000 Subject: [PATCH] dep/libchdr: arm64 compile fix on MSVC --- dep/libchdr/include/dr_libs/dr_flac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep/libchdr/include/dr_libs/dr_flac.h b/dep/libchdr/include/dr_libs/dr_flac.h index fb25189ef..0aeee497a 100644 --- a/dep/libchdr/include/dr_libs/dr_flac.h +++ b/dep/libchdr/include/dr_libs/dr_flac.h @@ -4686,7 +4686,7 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__neon_64(drflac_ /* For this version we are doing one sample at a time. */ while (pDecodedSamples < pDecodedSamplesEnd) { - int64x2_t prediction128; + int64x2_t prediction128 = vdupq_n_s64(0); uint32x4_t zeroCountPart128; uint32x4_t riceParamPart128;