iOS: Remove unused hidService

This commit is contained in:
wheremyfoodat 2025-07-30 09:26:52 +03:00
commit 3f8dd7be6a

View file

@ -15,13 +15,11 @@ extern "C" {
#define IOS_EXPORT extern "C" __attribute__((visibility("default")))
std::unique_ptr<Emulator> emulator = nullptr;
HIDService* hidService = nullptr;
IOS_EXPORT void iosCreateEmulator() {
printf("Creating emulator\n");
emulator = std::make_unique<Emulator>();
hidService = &emulator->getServiceManager().getHID();
emulator->initGraphicsContext(nullptr);
}