Skip to content

Commit d38aa33

Browse files
authored
Fix NetworkTools compilation after commit fc02d38 (winsiderss#1106)
1 parent fc02d38 commit d38aa33

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

plugins/ExtendedTools/fwtab.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,8 @@ BOOLEAN NTAPI FwTreeNewCallback(
12331233
hdc,
12341234
rect.left,
12351235
rect.top + ((rect.bottom - rect.top) - 16) / 2,
1236-
ILD_NORMAL | ILD_TRANSPARENT
1236+
ILD_NORMAL | ILD_TRANSPARENT,
1237+
FALSE
12371238
);
12381239

12391240
// Padding

plugins/NetworkTools/country.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,8 @@ VOID DrawCountryIcon(
616616
hdc,
617617
rect.left,
618618
rect.top + ((rect.bottom - rect.top) - 11) / 2,
619-
ILD_NORMAL
619+
ILD_NORMAL,
620+
FALSE
620621
);
621622
}
622623

0 commit comments

Comments
 (0)