浏览代码

* BugFix: Correct the 'gotoWebPage' function not using the VFS.

Robert MacGregor 3 年之前
父节点
当前提交
bd3a990140
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Engine/source/console/consoleFunctions.cpp

+ 1 - 1
Engine/source/console/consoleFunctions.cpp

@@ -2157,7 +2157,7 @@ DefineEngineFunction( gotoWebPage, void, ( const char* address ),,
    // the bogus url, and hope for the best.
    
    String addr;
-   if( Platform::isFile( address ) || Platform::isDirectory( address ) )
+   if( Torque::FS::IsFile( address ) || Torque::FS::IsDirectory( address ) )
    {
 #ifdef TORQUE2D_TOOLS_FIXME
       addr = String::ToString( "file://%s", address );