mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix wrong video_driver setting when changing in mainmenu
Fixes issue with direct3d(8|9)
This commit is contained in:
parent
406ed5efac
commit
44a1d0c192
1 changed files with 4 additions and 2 deletions
|
@ -122,7 +122,8 @@ local function formspec(tabview, name, tabdata)
|
|||
end
|
||||
video_driver_string = video_driver_string .. video_drivers[i]
|
||||
|
||||
if current_video_driver:lower() == video_drivers[i]:lower() then
|
||||
local video_driver = string.gsub(video_drivers[i], " ", "")
|
||||
if current_video_driver:lower() == video_driver:lower() then
|
||||
current_video_driver_idx = i
|
||||
end
|
||||
end
|
||||
|
@ -317,7 +318,8 @@ local function handle_settings_buttons(this, fields, tabname, tabdata)
|
|||
ddhandled = true
|
||||
end
|
||||
if fields["dd_video_driver"] then
|
||||
core.setting_set("video_driver",fields["dd_video_driver"])
|
||||
local video_driver = string.gsub(fields["dd_video_driver"], " ", "")
|
||||
core.setting_set("video_driver",string.lower(video_driver))
|
||||
ddhandled = true
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue