mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00
Merge pull request #5663 from DieSkaarj/master
Elucidate Surface Output in Menu and .conf
This commit is contained in:
commit
87314cf0ab
@ -3235,7 +3235,7 @@ void AllocCallback1() {
|
|||||||
DOSBoxMenu::item &item = mainMenu.alloc_item(DOSBoxMenu::submenu_type_id,"VideoOutputMenu");
|
DOSBoxMenu::item &item = mainMenu.alloc_item(DOSBoxMenu::submenu_type_id,"VideoOutputMenu");
|
||||||
item.set_text("Output");
|
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);
|
set_callback_function(output_menu_callback);
|
||||||
mainMenu.alloc_item(DOSBoxMenu::item_type_id,"output_direct3d").set_text("Direct3D").
|
mainMenu.alloc_item(DOSBoxMenu::item_type_id,"output_direct3d").set_text("Direct3D").
|
||||||
set_callback_function(output_menu_callback);
|
set_callback_function(output_menu_callback);
|
||||||
|
@ -6530,7 +6530,7 @@ void SDL_SetupConfigSection() {
|
|||||||
Pint->SetBasic(true);
|
Pint->SetBasic(true);
|
||||||
|
|
||||||
Pstring = sdl_sec->Add_string("output", Property::Changeable::Always, "default");
|
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->Set_values(outputs);
|
||||||
Pstring->SetBasic(true);
|
Pstring->SetBasic(true);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user