Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
Remove print statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Jun 11, 2020
1 parent 2d7e866 commit c6710b7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class VulkanFullscreenFixer {
fun fixFullscreen() {
val focusConsumer = Consumer<String> { windowTitle: String? ->
if (!windowTitle.equals("Path of Exile")) {
println(windowTitle)
isPoEActive = false;
} else if (windowTitle.equals("Path of Exile") && !isPoEActive) {
isPoEActive = true;
Expand All @@ -33,7 +32,7 @@ class VulkanFullscreenFixer {
val WS_CAPTION = WS_BORDER or WS_DLGFRAME

var style = User32.INSTANCE.GetWindowLong(hWnd, GWL_STYLE);
if(style == (style and WS_CAPTION.inv())) {
if (style == (style and WS_CAPTION.inv())) {
return;
}

Expand Down

0 comments on commit c6710b7

Please sign in to comment.