|
@@ -171,7 +171,7 @@ void AdventureMapInterface::show(Canvas & to)
|
|
|
|
|
|
void AdventureMapInterface::dim(Canvas & to)
|
|
|
{
|
|
|
- auto const isBigWindow = [&](std::shared_ptr<CIntObject> window) { return std::dynamic_pointer_cast<CIntObject>(window)->pos.w >= 800 && std::dynamic_pointer_cast<CIntObject>(window)->pos.w >= 600; }; // OH3 fullscreen
|
|
|
+ auto const isBigWindow = [&](std::shared_ptr<CIntObject> window) { return window->pos.w >= 800 && window->pos.h >= 600; }; // OH3 fullscreen
|
|
|
|
|
|
if(settings["adventure"]["hideBackground"].Bool())
|
|
|
for (auto window : GH.windows().findWindows<CIntObject>())
|