X Tutup
Skip to content

Commit 0920ffc

Browse files
committed
Change SDL2_net include path format
- Windows dependencies do not have SDL2 in an <include>/SDL2/*.h format
1 parent fece864 commit 0920ffc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ship/Headtracker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "Headtracker.h"
55
#include "core/Log.h"
66

7-
#include <SDL2/SDL_net.h>
7+
#include <SDL_net.h>
88
#include <cstdint>
99

1010
HeadtrackingManager::HeadtrackingManager() :

src/ship/Headtracker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#pragma once
55

6-
#include <SDL2/SDL_net.h>
6+
#include <SDL_net.h>
77

88
class HeadtrackingManager {
99
public:

0 commit comments

Comments
 (0)
X Tutup