diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-22 09:53:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-22 09:53:27 +0200 |
commit | 703de2f6ece307dd0ddbfd8193d1996f141294c3 (patch) | |
tree | c154bca58614f4970dcf144b886e906d4a8972d3 /platform/windows/os_windows.cpp | |
parent | 0e6551d8e2c080149bedcefd6c9dd0061261ea3f (diff) | |
parent | 35f6ba5c5d950171ec3e4f15934ac5494b19acb1 (diff) |
Merge pull request #21256 from elasota/bptc
BPTC support
Diffstat (limited to 'platform/windows/os_windows.cpp')
-rw-r--r-- | platform/windows/os_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index ca3bbedef2..c6a651bc7d 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -2805,7 +2805,7 @@ int OS_Windows::get_power_percent_left() { bool OS_Windows::_check_internal_feature_support(const String &p_feature) { - return p_feature == "pc" || p_feature == "s3tc"; + return p_feature == "pc" || p_feature == "s3tc" || p_feature == "bptc"; } void OS_Windows::disable_crash_handler() { |