- Thread starter
- #11
The question is why the replace is being made in the first place.Look for : GFN.cpp in DirectShowFilters\mpc-hc_subs\src\subtitles
The culprit is here :
Code:for (size_t k = 0; k < paths.GetCount(); k++) { CString path = paths[k]; path.Replace('\\', '/');
If i bypass : path.Replace('\\', '/'); <<<--- It's OK
I'm not in any way used to c++, but if I'm understanding it correctly it should get replaced back again 12 lines down in the code.