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;
|
||||
uint32 idx = 0;
|
||||
|
||||
if (path.hasPrefix("::")) {
|
||||
if (path.hasPrefix("::")) { // Root of the filesystem
|
||||
res = "..\\";
|
||||
idx = 2;
|
||||
} else if (path.hasPrefix("@:")) {
|
||||
} else if (path.hasPrefix("@:")) { // Root of the game
|
||||
res = ".\\";
|
||||
idx = 2;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue