mirror of https://github.com/ArduPilot/ardupilot
AP_OSD: use correct SFML header file
This commit is contained in:
parent
d3bc281a10
commit
0af83f9364
|
@ -18,7 +18,12 @@
|
|||
#ifdef WITH_SITL_OSD
|
||||
|
||||
#include <AP_OSD/AP_OSD_Backend.h>
|
||||
|
||||
#ifdef HAVE_SFML_GRAPHICS_H
|
||||
#include <SFML/Graphics.h>
|
||||
#else
|
||||
#include <SFML/Graphics.hpp>
|
||||
#endif
|
||||
|
||||
class AP_OSD_SITL : public AP_OSD_Backend {
|
||||
|
||||
|
|
Loading…
Reference in New Issue