Fix for PC target

This commit is contained in:
Ken Van Hoeylandt 2026-02-09 20:27:06 +01:00
parent a7ee91725c
commit 420fdfdd88

View File

@ -3,6 +3,7 @@
#include <tactility/device.h> #include <tactility/device.h>
#include <tactility/driver.h> #include <tactility/driver.h>
#include <tactility/drivers/root.h> #include <tactility/drivers/root.h>
#include <cstring>
extern "C" { extern "C" {
@ -18,7 +19,8 @@ Driver root_driver = {
.stop_device = nullptr, .stop_device = nullptr,
.api = nullptr, .api = nullptr,
.device_type = nullptr, .device_type = nullptr,
.owner = nullptr .owner = nullptr,
.internal = nullptr
}; };
} }