summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Quartz
diff options
context:
space:
mode:
authorMichael Maltese <michaeljosephmaltese@gmail.com>2017-04-15 19:23:19 -0700
committerMichael Maltese <michaeljosephmaltese@gmail.com>2017-04-15 19:34:42 -0700
commit5298328cb175a17eb9ea534a9d07dc57b42d2d42 (patch)
tree1a0bcdbc85ba3045cf0ff92fc7332ef9b15a5011 /Source/Core/InputCommon/ControllerInterface/Quartz
parenta389ae0711142d8c5c996fda3d1e6c5731d71de3 (diff)
Add headless support on macOS
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Quartz')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm
index a090b421a5..30802182a8 100644
--- a/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm
+++ b/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm
@@ -12,6 +12,9 @@ namespace Quartz
{
void PopulateDevices(void* window)
{
+ if (!window)
+ return;
+
g_controller_interface.AddDevice(std::make_shared<KeyboardAndMouse>(window));
}