Browse Source

Code review

Co-authored-by: Ivan Savenko <[email protected]>
Laserlicht 1 year ago
parent
commit
68e63630d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/adventureMap/AdventureMapInterface.cpp

+ 1 - 1
client/adventureMap/AdventureMapInterface.cpp

@@ -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>())