diff options
Diffstat (limited to 'popup/src/popup_wnd2.cpp')
-rw-r--r-- | popup/src/popup_wnd2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popup/src/popup_wnd2.cpp b/popup/src/popup_wnd2.cpp index 4ba2181..1e680c3 100644 --- a/popup/src/popup_wnd2.cpp +++ b/popup/src/popup_wnd2.cpp @@ -606,7 +606,7 @@ bool __forceinline isTextEmpty(char *text) if (!text)
return true;
while (*text)
- if (!isspace(*text++))
+ if (!isspace(BYTE(*text++)))
return false;
return true;
}
|