From 4b04f28e97c0c9b6cc6e4330f3dc79823fc0372a Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Wed, 29 May 2024 23:01:59 +0300 Subject: [PATCH] fix missing comma in .rc files, now MinGw can add resources, change dos stub, and sign target binaries, but the resources are not reflected for some reason --- resources/win/api/32/resources.rc | 4 ++-- resources/win/api/64/resources.rc | 4 ++-- resources/win/client/32/resources.rc | 4 ++-- resources/win/client/64/resources.rc | 4 ++-- resources/win/game_overlay_renderer/32/resources.rc | 4 ++-- resources/win/game_overlay_renderer/64/resources.rc | 4 ++-- resources/win/launcher/32/resources.rc | 4 ++-- resources/win/launcher/64/resources.rc | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/resources/win/api/32/resources.rc b/resources/win/api/32/resources.rc index 756596bf..f646b6d7 100644 --- a/resources/win/api/32/resources.rc +++ b/resources/win/api/32/resources.rc @@ -33,7 +33,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -78,6 +78,6 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/api/64/resources.rc b/resources/win/api/64/resources.rc index 5623f6f6..ebc4bdec 100644 --- a/resources/win/api/64/resources.rc +++ b/resources/win/api/64/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,6 +65,6 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/client/32/resources.rc b/resources/win/client/32/resources.rc index 9373fa6f..c8167d77 100644 --- a/resources/win/client/32/resources.rc +++ b/resources/win/client/32/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,7 +65,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/client/64/resources.rc b/resources/win/client/64/resources.rc index ad5758c2..67504b98 100644 --- a/resources/win/client/64/resources.rc +++ b/resources/win/client/64/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,7 +65,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/game_overlay_renderer/32/resources.rc b/resources/win/game_overlay_renderer/32/resources.rc index 7e87d2cf..a75c456e 100644 --- a/resources/win/game_overlay_renderer/32/resources.rc +++ b/resources/win/game_overlay_renderer/32/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,7 +65,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/game_overlay_renderer/64/resources.rc b/resources/win/game_overlay_renderer/64/resources.rc index cbdd71f8..146dbf62 100644 --- a/resources/win/game_overlay_renderer/64/resources.rc +++ b/resources/win/game_overlay_renderer/64/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,7 +65,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/launcher/32/resources.rc b/resources/win/launcher/32/resources.rc index 47fd365d..9255ca56 100644 --- a/resources/win/launcher/32/resources.rc +++ b/resources/win/launcher/32/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,6 +65,6 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } diff --git a/resources/win/launcher/64/resources.rc b/resources/win/launcher/64/resources.rc index 0a892ed7..6a1a38c3 100644 --- a/resources/win/launcher/64/resources.rc +++ b/resources/win/launcher/64/resources.rc @@ -30,7 +30,7 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } } @@ -65,6 +65,6 @@ FILESUBTYPE 0x0L // VFT2_UNKNOWN BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) + VALUE "Translation", 0x0409, 0x04B0 // English language (0x409) in the Windows ANSI codepage (1252) } }