Change dynamic info call to return false to indicate no change.

This commit is contained in:
Christopher Snowhill 2017-08-14 12:59:39 -07:00
parent 001b1b9d57
commit c6e2577169

View File

@ -280,7 +280,7 @@ void input_vgmstream::decode_seek(double p_seconds,abort_callback & p_abort) {
}
bool input_vgmstream::decode_can_seek() {return true;}
bool input_vgmstream::decode_get_dynamic_info(file_info & p_out, double & p_timestamp_delta) { return true; }
bool input_vgmstream::decode_get_dynamic_info(file_info & p_out, double & p_timestamp_delta) { return false; }
bool input_vgmstream::decode_get_dynamic_info_track(file_info & p_out, double & p_timestamp_delta) {return false;}
void input_vgmstream::decode_on_idle(abort_callback & p_abort) {/*m_file->on_idle(p_abort);*/}