change event_id in status_msg to 64bit when unpacking

pull/2082/head
Isaac Connor 2018-04-18 09:52:57 -04:00
parent 1040afbda4
commit 12d46e2377
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ if ( sem_acquire($semaphore,1) !== false ) {
}
case MSG_DATA_EVENT :
{
$data = unpack( "ltype/ievent/iprogress/irate/izoom/Cpaused", $msg );
$data = unpack( "ltype/Pevent/iprogress/irate/izoom/Cpaused", $msg );
//$data['progress'] = sprintf( "%.2f", $data['progress'] );
$data['rate'] /= RATE_BASE;
$data['zoom'] = round( $data['zoom']/SCALE_BASE, 1 );