From 03e0b16f47542996b1a711df265bf3dd4fbebdad Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 9 Sep 2021 00:46:48 +0200 Subject: [PATCH] Fix incorrect display of Unicode literal on Windows. --- src/tools/dcpomatic_player.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 7ffb107bf..7181ad129 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -359,12 +359,12 @@ public: NagDialog::maybe_nag ( this, Config::NAG_TOO_MANY_DROPPED_FRAMES, - _("The player is dropping a lot of frames, so playback may not be accurate.\n\n" + _(wxS("The player is dropping a lot of frames, so playback may not be accurate.\n\n" "This does not necessarily mean that the DCP you are playing is defective!\n\n" "You may be able to improve player performance by:\n" "• choosing 'decode at half resolution' or 'decode at quarter resolution' from the View menu\n" "• using a more powerful computer.\n" - ) + )) ); } -- 2.30.2