diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-09-09 00:46:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-09-21 09:46:40 +0200 |
| commit | 03e0b16f47542996b1a711df265bf3dd4fbebdad (patch) | |
| tree | 533070615270e76efa5ea3c6f9f01bb90db7ac44 | |
| parent | a5f481aae19a6ef5b0cad48edaea5b58fc00ee05 (diff) | |
Fix incorrect display of Unicode literal on Windows.
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 4 |
1 files 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" "<b>This does not necessarily mean that the DCP you are playing is defective!</b>\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" - ) + )) ); } |
