blob: a6770f455cf9f5918e9e3685989eda6495b81d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- VirtualBox-4.0.0_OSE/src/VBox/Main/SystemPropertiesImpl.cpp
+++ VirtualBox-4.0.0_OSE/src/VBox/Main/SystemPropertiesImpl.cpp
@@ -1035,7 +1035,8 @@
// new default with VirtualBox 4.0: "$HOME/VirtualBox VMs"
HRESULT rc = getUserHomeDirectory(path);
if (FAILED(rc)) return rc;
- path += RTPATH_SLASH_STR "VirtualBox VMs";
+ path += RTPATH_SLASH_STR ".VirtualBox";
+ path += RTPATH_SLASH_STR "Machines";
}
if (!RTPathStartsWithRoot(path.c_str()))
|