Skip to content

Commit 9e78ad0

Browse files
committed
(AVFoundation/Camera) Fix some header includes
1 parent cf3de27 commit 9e78ad0

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

camera/drivers/avfoundation.m

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@
1717
#include <Foundation/Foundation.h>
1818
#include <AVFoundation/AVFoundation.h>
1919
#include <libretro.h>
20-
#include "../camera/camera_driver.h"
21-
#include "../verbosity.h"
22-
/// For image scaling and color space DSP
20+
/* For image scaling and color space DSP */
2321
#import <Accelerate/Accelerate.h>
2422
#if TARGET_OS_IOS
25-
/// For camera rotation detection
23+
/* For camera rotation detection */
2624
#import <UIKit/UIKit.h>
2725
#endif
2826

29-
// TODO: Add an API to retroarch to allow selection of camera
27+
#include "../camera_driver.h"
28+
#include "../../verbosity.h"
29+
30+
/* TODO: Add an API to retroarch to allow selection of camera */
3031
#ifndef CAMERA_PREFER_FRONTFACING
31-
#define CAMERA_PREFER_FRONTFACING 1 /// Default to front camera
32+
#define CAMERA_PREFER_FRONTFACING 1 /* Default to front camera */
3233
#endif
3334

3435
#ifndef CAMERA_MIRROR_FRONT_CAMERA

0 commit comments

Comments
 (0)