diff --git a/reframework/autorun/MHR_Overlay/Game_Handler/screen.lua b/reframework/autorun/MHR_Overlay/Game_Handler/screen.lua index ae3fb87..c5c764b 100644 --- a/reframework/autorun/MHR_Overlay/Game_Handler/screen.lua +++ b/reframework/autorun/MHR_Overlay/Game_Handler/screen.lua @@ -45,11 +45,13 @@ function this.update_window_size() local width; local height; - if d2d ~= nil and config.current_config.global_settings.renderer.use_d2d_if_available then - width, height = d2d.surface_size(); - else - width, height = this.get_game_window_size(); - end + -- if d2d ~= nil and config.current_config.global_settings.renderer.use_d2d_if_available then + -- width, height = d2d.surface_size(); + -- else + -- width, height = this.get_game_window_size(); + -- end + + width, height = this.get_game_window_size(); if width ~= nil then this.width = width;