Commit 6034b25c authored by longpanda's avatar longpanda
Browse files

Don't force to use max resolution for VMware/VirtualBox. (#3140)

parent c5fd64d2
...@@ -35,6 +35,14 @@ function ventoy_debug_pause { ...@@ -35,6 +35,14 @@ function ventoy_debug_pause {
function ventoy_max_resolution { function ventoy_max_resolution {
#Skip this for VM
smbios -t 1 -s 0x05 --set=system_product;
for vtPdt in "VMware" "VirtualBox"; then
if vt_str_casebegin "$system_product" "$vtPdt"; then
return
fi
fi
vt_enum_video_mode vt_enum_video_mode
vt_get_video_mode 0 vtCurMode vt_get_video_mode 0 vtCurMode
terminal_output console terminal_output console
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment