mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
path: start special espansion with ~~name instead of ~name
Since commit 7381db60, strings like "~desktop/" were expanded as
platform-specific paths by mpv. Apparently this similarity to standard
Unix shell expansion caused confusion, so change it to "~~desktop/". The
shell doesn't expand this, so it should be better.
This commit is contained in:
@@ -100,7 +100,7 @@ static const char def_config[] =
|
||||
"terminal=no\n"
|
||||
"force-window=yes\n"
|
||||
"idle=once\n"
|
||||
"screenshot-directory=~desktop/\n";
|
||||
"screenshot-directory=~~desktop/\n";
|
||||
|
||||
static pthread_mutex_t terminal_owner_lock = PTHREAD_MUTEX_INITIALIZER;
|
||||
static struct MPContext *terminal_owner;
|
||||
|
||||
Reference in New Issue
Block a user