From a968ea83644f51e24a4f3e410adb45576195f466 Mon Sep 17 00:00:00 2001 From: Riley S Date: Thu, 25 Feb 2021 16:11:34 -0500 Subject: [PATCH] Add default/null dpiScale for other apis --- src/d3d/d3ddevice.cpp | 1 + src/ps2/ps2device.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/d3d/d3ddevice.cpp b/src/d3d/d3ddevice.cpp index 922530c..ce53ad3 100644 --- a/src/d3d/d3ddevice.cpp +++ b/src/d3d/d3ddevice.cpp @@ -2003,6 +2003,7 @@ Device renderdevice = { d3d::im3DRenderPrimitive, d3d::im3DRenderIndexedPrimitive, d3d::im3DEnd, + null::dpiScale, d3d::deviceSystem, }; diff --git a/src/ps2/ps2device.cpp b/src/ps2/ps2device.cpp index 98f9914..07f017c 100644 --- a/src/ps2/ps2device.cpp +++ b/src/ps2/ps2device.cpp @@ -40,6 +40,7 @@ Device renderdevice = { null::im3DRenderPrimitive, null::im3DRenderIndexedPrimitive, null::im3DEnd, + null::dpiScale, null::deviceSystem };