Ignore:
Timestamp:
06/11/15 16:23:41 (10 years ago)
Author:
epyon
Message:
  • massive shift towards nova STL
  • include cleanups


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/fmod/fmod_audio.cc

    r365 r392  
    8888
    8989
    90 nv::sound fmod::audio::load_sound( const std::string& a_path )
     90nv::sound fmod::audio::load_sound( const string_ref& a_path )
    9191{
    9292        FMOD_SYSTEM* system = (FMOD_SYSTEM*)m_system;
    9393        FMOD_SOUND* sample;
    94         FMOD_RESULT fm_result = FMOD_System_CreateSound( system, a_path.c_str(), FMOD_3D, 0, &sample );
     94        FMOD_RESULT fm_result = FMOD_System_CreateSound( system, a_path.data(), FMOD_3D, 0, &sample );
    9595        if ( fm_result != FMOD_OK )
    9696        {
Note: See TracChangeset for help on using the changeset viewer.