summaryrefslogtreecommitdiff
path: root/src/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittests')
-rw-r--r--src/unittests/gui/windowmanager.cc18
-rw-r--r--src/unittests/render/mockgraphics.cc5
2 files changed, 19 insertions, 4 deletions
diff --git a/src/unittests/gui/windowmanager.cc b/src/unittests/gui/windowmanager.cc
index bed0de6a1..c83f47480 100644
--- a/src/unittests/gui/windowmanager.cc
+++ b/src/unittests/gui/windowmanager.cc
@@ -200,7 +200,14 @@ TEST_CASE("Windows tests", "windowmanager")
TranslationManager::init();
- mainGraphics->setVideoMode(640, 480, 1, 8, false, false, false, false);
+ mainGraphics->setVideoMode(640, 480,
+ 1,
+ 8,
+ false,
+ false,
+ false,
+ false,
+ false);
SECTION("bankWindow")
{
@@ -879,7 +886,14 @@ TEST_CASE("WindowManager", "create windows")
TranslationManager::init();
- mainGraphics->setVideoMode(640, 480, 1, 8, false, false, false, false);
+ mainGraphics->setVideoMode(640, 480,
+ 1,
+ 8,
+ false,
+ false,
+ false,
+ false,
+ false);
SECTION("create windows")
{
diff --git a/src/unittests/render/mockgraphics.cc b/src/unittests/render/mockgraphics.cc
index b484ad4d1..29aa19af6 100644
--- a/src/unittests/render/mockgraphics.cc
+++ b/src/unittests/render/mockgraphics.cc
@@ -263,9 +263,10 @@ bool MockGraphics::setVideoMode(const int w, const int h,
const bool fs,
const bool hwaccel,
const bool resize,
- const bool noFrame) restrict2
+ const bool noFrame,
+ const bool allowHighDPI) restrict2
{
- setMainFlags(w, h, scale, bpp, fs, hwaccel, resize, noFrame);
+ setMainFlags(w, h, scale, bpp, fs, hwaccel, resize, noFrame, allowHighDPI);
if ((mWindow = graphicsManager.createWindow(w, h, bpp,
getSoftwareFlags())) == nullptr)