Remove trialing space in process.cpp

This commit is contained in:
Yukino Song
2025-05-29 18:00:06 +08:00
parent 2d0e5c7c4a
commit 34766201d2

View File

@@ -304,13 +304,13 @@ namespace proc {
// Apply display settings // Apply display settings
VDISPLAY::changeDisplaySettings(vdisplayName.c_str(), render_width, render_height, target_fps); VDISPLAY::changeDisplaySettings(vdisplayName.c_str(), render_width, render_height, target_fps);
} }
// Check the ISOLATED DISPLAY configuration setting and rearrange the displays // Check the ISOLATED DISPLAY configuration setting and rearrange the displays
if (config::video.isolated_virtual_display_option == true) { if (config::video.isolated_virtual_display_option == true) {
// Apply the isolated display settings // Apply the isolated display settings
VDISPLAY::changeDisplaySettings2(vdisplayName.c_str(), render_width, render_height, target_fps, true); VDISPLAY::changeDisplaySettings2(vdisplayName.c_str(), render_width, render_height, target_fps, true);
} }
// Set virtual_display to true when everything went fine // Set virtual_display to true when everything went fine
this->virtual_display = true; this->virtual_display = true;
this->display_name = platf::to_utf8(vdisplayName); this->display_name = platf::to_utf8(vdisplayName);