Browse Source

Fix Malformed Windows VERSIONINFO structures. (#17090)

The VERSIONINFO structures supplied in the Windows resource files have a mismatch between the codepage specified in the translation table, and the codepage specified in the string tables. This patch fixes both of the rc.in files that are broken.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
pull/47/head
Mark Becwar 10 years ago
committed by Jean-Baptiste Kempf
parent
commit
e61c12c60b
  1. 2
      modules/module.rc.in
  2. 2
      src/libvlc_win32_rc.rc.in

2
modules/module.rc.in

@ -22,6 +22,6 @@ BEGIN
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
VALUE "Translation", 0x409, 1252
END
END

2
src/libvlc_win32_rc.rc.in

@ -22,7 +22,7 @@ BEGIN
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
VALUE "Translation", 0x409, 1252
END
END

Loading…
Cancel
Save