summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-18 17:12:07 +0100
committerwm4 <wm4@nowhere>2013-12-18 17:12:07 +0100
commit4ed83fe2e5f16b572b5c6a49a82f264d3f80a5e1 (patch)
treeac7e50126ebb5c92669f408bbf72d671f68db6b4 /player/main.c
parent761a0137364ba8ba3bc7f921248da57947132303 (diff)
downloadmpv-4ed83fe2e5f16b572b5c6a49a82f264d3f80a5e1.tar.bz2
mpv-4ed83fe2e5f16b572b5c6a49a82f264d3f80a5e1.tar.xz
Remove the _ macro
This was a gettext-style macro to mark strings that should be translated.
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/main.c b/player/main.c
index b421f2791a..037ea12d4d 100644
--- a/player/main.c
+++ b/player/main.c
@@ -80,7 +80,7 @@
#include <windows.h>
#endif
-const char mp_help_text[] = _(
+const char mp_help_text[] =
"Usage: mpv [options] [url|path/]filename\n"
"\n"
"Basic options:\n"
@@ -92,7 +92,7 @@ const char mp_help_text[] = _(
" --playlist=<file> specify playlist file\n"
"\n"
" --list-options list all mpv options\n"
-"\n");
+"\n";
void mp_print_version(int always)
{