Merge pull request #5663 from DieSkaarj/master

Elucidate Surface Output in Menu and .conf
This commit is contained in:
Jonathan Campbell 2025-04-27 08:01:18 -07:00 committed by GitHub
commit 87314cf0ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -3235,7 +3235,7 @@ void AllocCallback1() {
DOSBoxMenu::item &item = mainMenu.alloc_item(DOSBoxMenu::submenu_type_id,"VideoOutputMenu");
item.set_text("Output");
mainMenu.alloc_item(DOSBoxMenu::item_type_id,"output_surface").set_text("Surface").
mainMenu.alloc_item(DOSBoxMenu::item_type_id,"output_surface").set_text("Software (Surface)").
set_callback_function(output_menu_callback);
mainMenu.alloc_item(DOSBoxMenu::item_type_id,"output_direct3d").set_text("Direct3D").
set_callback_function(output_menu_callback);

View File

@ -6530,7 +6530,7 @@ void SDL_SetupConfigSection() {
Pint->SetBasic(true);
Pstring = sdl_sec->Add_string("output", Property::Changeable::Always, "default");
Pstring->Set_help("What video system to use for output (openglnb = OpenGL nearest; openglpp = OpenGL perfect; ttf = TrueType font output).");
Pstring->Set_help("What video system to use for output (surface = software (SDL_Surface); openglnb = OpenGL nearest; openglpp = OpenGL perfect; ttf = TrueType font output).");
Pstring->Set_values(outputs);
Pstring->SetBasic(true);