Fix 3ds build and update libpicasso

This commit is contained in:
2026-04-25 00:01:06 +02:00
parent 280ce524bf
commit 7f708a565e
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -140,6 +140,7 @@ void HidGlfw::HandleAxisKey(GLFWgamepadstate s, int iK, int eA, bool negative) {
}
} // namespace PD
#else
struct GLFWgamepadstate {};
namespace PD {
HidGlfw::HidGlfw(GLFWwindow* win) : HidDriver("HidGlfw") {}
@@ -149,6 +150,7 @@ HidGlfw::~HidGlfw() {}
void HidGlfw::Update() {
HidDriver::Update(); // clear stats
}
void HidGlfw::HandleAxisKey(GLFWgamepadstate s, int iK, int eA) {}
void HidGlfw::HandleAxisKey(GLFWgamepadstate s, int iK, int eA, bool negative) {
}
} // namespace PD
#endif