Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
jobs:
build_windows:
name: Windows
runs-on: windows-2025
runs-on: windows-2022
strategy:
fail-fast: false
env:
Expand Down
5 changes: 5 additions & 0 deletions src/rsgain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,12 @@ int main(int argc, char *argv[]) {
{ "version", no_argument, nullptr, 'v' },
{ 0, 0, 0, 0 }
};
#ifndef _WIN32
// On Windows, the CRT's numpunct facet crashes when accessed for locales that use
// non-ASCII thousands separators (e.g. French NARROW NO-BREAK SPACE U+202F), which
// is triggered by the {:L} format specifiers used for locale-aware number output.
try { std::locale::global(std::locale("")); } catch(...) {}
#endif
av_log_set_callback(nullptr);

#ifdef _WIN32
Expand Down
Loading