mirror of
https://github.com/mpv-player/mpv
synced 2025-01-20 22:40:52 +00:00
osdep/mpv.rc: fix encoding of MPVCOPYRIGHT
llvm-rc doesn't allow multi-byte codes in narrow utf-8.
This commit is contained in:
parent
ed7fe505b4
commit
9fc2343512
@ -1,5 +1,7 @@
|
||||
#define VERSION "@VERSION@"
|
||||
#define MPVCOPYRIGHT "Copyright © 2000-2024 mpv/MPlayer/mplayer2 projects"
|
||||
#define MPVCOPYRIGHT_T(C) "Copyright " C " 2000-2024 mpv/MPlayer/mplayer2 projects"
|
||||
#define MPVCOPYRIGHT MPVCOPYRIGHT_T("\xC2\xA9")
|
||||
#define MPVCOPYRIGHT_W MPVCOPYRIGHT_T(L"\xA9")
|
||||
#ifndef NO_BUILD_TIMESTAMPS
|
||||
#define BUILDDATE __DATE__ " " __TIME__
|
||||
#else
|
||||
|
@ -33,7 +33,7 @@ VS_VERSION_INFO VERSIONINFO
|
||||
VALUE "CompanyName", "mpv"
|
||||
VALUE "FileDescription", "mpv"
|
||||
VALUE "FileVersion", VERSION
|
||||
VALUE "LegalCopyright", MPVCOPYRIGHT
|
||||
VALUE "LegalCopyright", MPVCOPYRIGHT_W
|
||||
VALUE "OriginalFilename", "mpv.exe"
|
||||
VALUE "ProductName", "mpv"
|
||||
VALUE "ProductVersion", VERSION
|
||||
|
Loading…
Reference in New Issue
Block a user