On Linux, solution 8 sources did not compile:
(Solution8 commit 415935feccfeb169b462384e66c81d5850921cfc)
(Kore commit 93120a701bc464d7d89c712c2ff2437989caf19e)
Code: Alles auswählen
[ 41%] Building CXX object CMakeFiles/Exercise8.dir/Solution8/Kore/Backends/System/Linux/Sources/Kore/Input/HIDManager.cpp.o
Solution8/Kore/Backends/System/Linux/Sources/Kore/Input/HIDManager.cpp: In destructor ‘Kore::HIDManager::~HIDManager()’:
Solution8/Kore/Backends/System/Linux/Sources/Kore/Input/HIDManager.cpp:20:16: error: ‘NULL’ was not declared in this scope
gamepadList = NULL;
Code: Alles auswählen
--- a/Backends/System/Linux/Sources/Kore/Input/HIDManager.cpp
+++ b/Backends/System/Linux/Sources/Kore/Input/HIDManager.cpp
@@ -1,5 +1,6 @@
#include "HIDManager.h"
#include "../pch.h"
+#include <cstddef>
using namespace Kore;
Best regards,
PicoJr.