# HG changeset patch # User ib # Date 1318848500 0 # Node ID 178c5660c090f3cc25089eb0a95ce71466f0aa59 # Parent 68d3b36b9dfcad743e695bc37a065f4aae851a2d Cosmetic: Change comment. Try to explain why a filename conversion makes sense in the Wine port. diff -r 68d3b36b9dfc -r 178c5660c090 gui/win32/interface.c --- 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;