From 16c58b995152930ef725e0a87d8b039b2bab406b Mon Sep 17 00:00:00 2001 From: Michael Moss Date: Thu, 12 Feb 2026 07:39:13 -0800 Subject: [PATCH] Fix RC file syntax error for pedantic compilers. Fixes #839 PiperOrigin-RevId: 869211177 Change-Id: I42a0dacde6ca6652df1803033c2b96a7c7076616 --- dist/mujoco.rc | 2 +- dist/simulate.rc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/mujoco.rc b/dist/mujoco.rc index abe4438a..423444c1 100644 --- a/dist/mujoco.rc +++ b/dist/mujoco.rc @@ -20,6 +20,6 @@ FILETYPE 0x1 } BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 + VALUE "Translation", 0x0409, 0x04B0 } } diff --git a/dist/simulate.rc b/dist/simulate.rc index b271cf59..9193e0ef 100644 --- a/dist/simulate.rc +++ b/dist/simulate.rc @@ -22,6 +22,6 @@ FILETYPE 0x1 } BLOCK "VarFileInfo" { - VALUE "Translation", 0x0409 0x04B0 + VALUE "Translation", 0x0409, 0x04B0 } }