@@ -3542,7 +3542,7 @@ namespace lime {
35423542 alcObjects.erase (alcDevice);
35433543 al_gc_mutex.Unlock ();
35443544
3545- return alcCaptureCloseDevice (alcDevice);
3545+ return alcCaptureCloseDevice (alcDevice);
35463546
35473547 }
35483548
@@ -3562,48 +3562,48 @@ namespace lime {
35623562 void lime_alc_capture_start (value device) {
35633563
35643564 ALCdevice* alcDevice = (ALCdevice*)val_data (device);
3565- alcCaptureStart (alcDevice);
3565+ alcCaptureStart (alcDevice);
35663566
35673567 }
35683568
35693569
35703570 HL_PRIM void HL_NAME (hl_alc_capture_start) (HL_CFFIPointer* device) {
35713571
35723572 ALCdevice* alcDevice = (ALCdevice*)device->ptr ;
3573- alcCaptureStart (alcDevice);
3573+ alcCaptureStart (alcDevice);
35743574
35753575 }
35763576
35773577
35783578 void lime_alc_capture_stop (value device) {
35793579
35803580 ALCdevice* alcDevice = (ALCdevice*)val_data (device);
3581- alcCaptureStop (alcDevice);
3581+ alcCaptureStop (alcDevice);
35823582
35833583 }
35843584
35853585
35863586 HL_PRIM void HL_NAME (hl_alc_capture_stop) (HL_CFFIPointer* device) {
35873587
35883588 ALCdevice* alcDevice = (ALCdevice*)device->ptr ;
3589- alcCaptureStop (alcDevice);
3589+ alcCaptureStop (alcDevice);
35903590
35913591 }
35923592
35933593
35943594 void lime_alc_capture_samples (value device, value buffer, int samples) {
35953595
35963596 ALCdevice* alcDevice = (ALCdevice*)val_data (device);
3597- Bytes bytes = Bytes (buffer);
3598- alcCaptureSamples (alcDevice, bytes.b , samples);
3597+ Bytes bytes (buffer);
3598+ alcCaptureSamples (alcDevice, bytes.b , samples);
35993599
36003600 }
36013601
36023602
36033603 HL_PRIM void HL_NAME (hl_alc_capture_samples) (HL_CFFIPointer* device, Bytes* buffer, int samples) {
36043604
36053605 ALCdevice* alcDevice = (ALCdevice*)device->ptr ;
3606- alcCaptureSamples (alcDevice, buffer->b , samples);
3606+ alcCaptureSamples (alcDevice, buffer->b , samples);
36073607
36083608 }
36093609
0 commit comments