From 7a1706834f2bb9573b720a96a1148625ea980dd2 Mon Sep 17 00:00:00 2001 From: Benau Date: Mon, 19 Sep 2022 00:12:51 +0800 Subject: [PATCH] Default to opengl render for arm64 windows The opengl compatibility pack is pre-installed on arm64 windows according to a user --- src/config/user_config.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/user_config.hpp b/src/config/user_config.hpp index bc8ae8eb4..9c5f91243 100644 --- a/src/config/user_config.hpp +++ b/src/config/user_config.hpp @@ -712,14 +712,14 @@ namespace UserConfigParams PARAM_DEFAULT( FloatUserConfigParam(3, "font_size", &m_video_group, "The size of fonts. 0 is the smallest and 6 is the biggest") ); -#if defined(_IRR_COMPILE_WITH_DIRECT3D_9_) && (defined(_M_ARM64) || defined(_M_ARM)) +#if defined(_IRR_COMPILE_WITH_DIRECT3D_9_) && defined(_M_ARM) PARAM_PREFIX StringUserConfigParam m_render_driver PARAM_DEFAULT( StringUserConfigParam("directx9", "render_driver", - &m_video_group, "Render video driver to use, at the moment gl or directx9 is supported.") ); + &m_video_group, "Render video driver to use, at the moment gl, vulkan or directx9 is supported.") ); #else PARAM_PREFIX StringUserConfigParam m_render_driver PARAM_DEFAULT( StringUserConfigParam("gl", "render_driver", - &m_video_group, "Render video driver to use, at the moment gl or directx9 is supported.") ); + &m_video_group, "Render video driver to use, at the moment gl, vulkan or directx9 is supported.") ); #endif #if defined(MOBILE_STK)