Skip to content

Commit 8a6a725

Browse files
committed
Increased cache version
1 parent e8394e9 commit 8a6a725

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Sources/Jazz2/Compatibility/JJ2Anims.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Jazz2::Compatibility
2222
{
2323
public:
2424
#ifndef DOXYGEN_GENERATING_OUTPUT
25-
static constexpr std::uint16_t CacheVersion = 28;
25+
static constexpr std::uint16_t CacheVersion = 29;
2626
#endif
2727

2828
static JJ2Version Convert(StringView path, PakWriter& pakWriter, bool isPlus = false);

Sources/nCine/Audio/ALAudioDevice.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ namespace nCine
130130
LOGI("ALC_EXT_EFX Version: unsupported", hasExtEfx);
131131
}
132132

133-
#if defined(AL_DEFAULT_RESAMPLER_SOFT)
133+
# if defined(AL_DEFAULT_RESAMPLER_SOFT)
134134
bool defaultResamplerOverriden = false;
135135
if (alIsExtensionPresent("AL_SOFT_source_resampler")) {
136136
ALCint defaultResampler = alGetInteger(AL_DEFAULT_RESAMPLER_SOFT);
@@ -144,7 +144,7 @@ namespace nCine
144144
}
145145
}
146146
}
147-
#endif
147+
# endif
148148

149149
LOGI("Sources: {} (M) / {} (S)", monoSources, stereoSources);
150150

@@ -176,11 +176,11 @@ namespace nCine
176176
}
177177
}
178178

179-
#if defined(AL_DEFAULT_RESAMPLER_SOFT)
179+
# if defined(AL_DEFAULT_RESAMPLER_SOFT)
180180
if (defaultResamplerOverriden) {
181181
LOGW("The default resampler has been overridden on your system, which may result in degraded sound quality");
182182
}
183-
#endif
183+
# endif
184184
}
185185
#endif
186186
}

0 commit comments

Comments
 (0)