summaryrefslogtreecommitdiff
path: root/platform/windows/os_windows.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-11-02 18:51:02 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-11-02 18:51:02 +0100
commitfd1e579aa78258b91e658b5b4b9a3fc94d0a0ef4 (patch)
treeff5c92a9500ccdc34383321b479c4738caf1376e /platform/windows/os_windows.cpp
parent76092fb6841e5f56c37b983400828971a5559f2c (diff)
parent060d62e0dc094ac7c4f15020c6921ac582f29977 (diff)
Merge pull request #68090 from bruvzg/sys_emoji
Load and use system emoji font in the editor.
Diffstat (limited to 'platform/windows/os_windows.cpp')
-rw-r--r--platform/windows/os_windows.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp
index d95a88fac1..36fd86c4f5 100644
--- a/platform/windows/os_windows.cpp
+++ b/platform/windows/os_windows.cpp
@@ -1181,7 +1181,14 @@ String OS_Windows::get_unique_id() const {
}
bool OS_Windows::_check_internal_feature_support(const String &p_feature) {
- return p_feature == "pc";
+ if (p_feature == "system_fonts") {
+ return true;
+ }
+ if (p_feature == "pc") {
+ return true;
+ }
+
+ return false;
}
void OS_Windows::disable_crash_handler() {