Changeset 1605 for trunk/libs/hydrogen/src/hydrogen.cpp
- Timestamp:
- 03/05/10 03:47:13 (3 years ago)
- Files:
-
- 1 modified
-
trunk/libs/hydrogen/src/hydrogen.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/hydrogen/src/hydrogen.cpp
r1567 r1605 2424 2424 2425 2425 /// Export a song to a wav file, returns the elapsed time in mSec 2426 voidHydrogen::startExportSong( const QString& filename, int rate, int depth )2426 bool Hydrogen::startExportSong( const QString& filename, int rate, int depth ) 2427 2427 { 2428 2428 if ( getState() == STATE_PLAYING ) { … … 2475 2475 _ERRORLOG( "Error starting disk writer driver " 2476 2476 "[DiskWriterDriver::connect()]" ); 2477 } 2477 return false; 2478 } 2479 return true; 2478 2480 } 2479 2481