blob: 06be394dddf60c61b083b92bdb55efa1cc40a80e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- VirtualBox-7.0.8/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
+++ VirtualBox-7.0.8/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
@@ -2171,7 +2171,8 @@
// new default with VirtualBox 4.0: "$HOME/VirtualBox VMs"
HRESULT hrc = i_getUserHomeDirectory(path);
if (FAILED(hrc)) return hrc;
- path += RTPATH_SLASH_STR "VirtualBox VMs";
+ path += RTPATH_SLASH_STR ".VirtualBox";
+ path += RTPATH_SLASH_STR "Machines";
}
if (!RTPathStartsWithRoot(path.c_str()))
|