diff options
author | Juan Linietsky <juan@godotengine.org> | 2019-02-26 11:58:47 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2019-02-26 11:58:47 -0300 |
commit | 5eeb06ffd1bf9cc79142760c372c17cd858cbe49 (patch) | |
tree | 824bdca6e0072ff877a1944c5b2c248c2bca0fbb /platform/haiku | |
parent | 329904598829dcbed462b012dee39bc37d7d7c83 (diff) |
-Remove harcoded opengl extension testing from OS, ask rasterizer instead.
-Fixed a bug where etc textures were imported broken
Diffstat (limited to 'platform/haiku')
-rw-r--r-- | platform/haiku/os_haiku.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/haiku/os_haiku.cpp b/platform/haiku/os_haiku.cpp index a5b2e66a22..a6d5a00852 100644 --- a/platform/haiku/os_haiku.cpp +++ b/platform/haiku/os_haiku.cpp @@ -322,7 +322,7 @@ String OS_Haiku::get_executable_path() const { bool OS_Haiku::_check_internal_feature_support(const String &p_feature) { - return p_feature == "pc" || p_feature == "s3tc"; + return p_feature == "pc"; } String OS_Haiku::get_config_path() const { |