X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b00a538378ea4976f8dd0d5a23e9fcf43b58f64..e7e52b6d2fa1021a0fcf1a507ed8742c71b0da50:/src/common/filefn.cpp diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index bfa2fe8663..fc22b03128 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1447,7 +1447,8 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz) #endif #ifdef __DJGPP__ - // VS: DJGPP is Unicodish and uses / instead of \ as path deliminer. We don't like that. + // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths with + // / deliminers. We don't like that. for (wxChar *ch = buf; *ch; ch++) if (*ch == wxT('/')) *ch = wxT('\\'); #endif