DIRECTOR: Added comments
This commit is contained in:
parent
c2010e2560
commit
03d0a7b891
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue