mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
* BugFix: Correct the 'gotoWebPage' function not using the VFS.
This commit is contained in:
parent
0a45fac224
commit
bd3a990140
1 changed files with 1 additions and 1 deletions
|
|
@ -2157,7 +2157,7 @@ DefineEngineFunction( gotoWebPage, void, ( const char* address ),,
|
||||||
// the bogus url, and hope for the best.
|
// the bogus url, and hope for the best.
|
||||||
|
|
||||||
String addr;
|
String addr;
|
||||||
if( Platform::isFile( address ) || Platform::isDirectory( address ) )
|
if( Torque::FS::IsFile( address ) || Torque::FS::IsDirectory( address ) )
|
||||||
{
|
{
|
||||||
#ifdef TORQUE2D_TOOLS_FIXME
|
#ifdef TORQUE2D_TOOLS_FIXME
|
||||||
addr = String::ToString( "file://%s", address );
|
addr = String::ToString( "file://%s", address );
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue