mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Merge pull request #477 from DavidWyand-GG/AudioData
Allow audioData.cs.dso to execute
This commit is contained in:
commit
1684501ad0
2 changed files with 2 additions and 2 deletions
|
|
@ -110,7 +110,7 @@ function initClient()
|
||||||
setDefaultFov( $pref::Player::defaultFov );
|
setDefaultFov( $pref::Player::defaultFov );
|
||||||
setZoomSpeed( $pref::Player::zoomSpeed );
|
setZoomSpeed( $pref::Player::zoomSpeed );
|
||||||
|
|
||||||
if( isFile( "./audioData.cs" ) )
|
if( isScriptFile( expandFilename("./audioData.cs") ) )
|
||||||
exec( "./audioData.cs" );
|
exec( "./audioData.cs" );
|
||||||
|
|
||||||
// Start up the main menu... this is separated out into a
|
// Start up the main menu... this is separated out into a
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,7 @@ function initClient()
|
||||||
setDefaultFov( $pref::Player::defaultFov );
|
setDefaultFov( $pref::Player::defaultFov );
|
||||||
setZoomSpeed( $pref::Player::zoomSpeed );
|
setZoomSpeed( $pref::Player::zoomSpeed );
|
||||||
|
|
||||||
if( isFile( "./audioData.cs" ) )
|
if( isScriptFile( expandFilename("./audioData.cs") ) )
|
||||||
exec( "./audioData.cs" );
|
exec( "./audioData.cs" );
|
||||||
|
|
||||||
// Start up the main menu... this is separated out into a
|
// Start up the main menu... this is separated out into a
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue