Mercurial > mplayer.hg
changeset 34123:178c5660c090
Cosmetic: Change comment.
Try to explain why a filename conversion makes sense in the Wine port.
author | ib |
---|---|
date | Mon, 17 Oct 2011 10:48:20 +0000 |
parents | 68d3b36b9dfc |
children | 7777da659cbe |
files | gui/win32/interface.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/win32/interface.c Mon Oct 17 10:47:28 2011 +0000 +++ b/gui/win32/interface.c Mon Oct 17 10:48:20 2011 +0000 @@ -380,7 +380,9 @@ filename = guiInfo.Filename; #ifdef __WINE__ - filename = unix_name(filename); // passed file arguments may be in Windows format + // if filename is in Windows format, convert it + // so that MPlayer will find it in the Linux filesystem + filename = unix_name(filename); #endif guiInfo.StreamType = type;