DIRECTOR: Added comments

This commit is contained in:
Eugene Sandulenko 2020-10-04 22:09:11 +02:00
parent c2010e2560
commit 03d0a7b891

View file

@ -253,10 +253,10 @@ Common::String convertPath(Common::String &path) {
Common::String res; Common::String res;
uint32 idx = 0; uint32 idx = 0;
if (path.hasPrefix("::")) { if (path.hasPrefix("::")) { // Root of the filesystem
res = "..\\"; res = "..\\";
idx = 2; idx = 2;
} else if (path.hasPrefix("@:")) { } else if (path.hasPrefix("@:")) { // Root of the game
res = ".\\"; res = ".\\";
idx = 2; idx = 2;
} else { } else {