summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-05-08 16:13:43 -0400
committer arbee <rb6502@users.noreply.github.com>2021-05-08 16:13:43 -0400
commit6704819c1f1a5512667da958664a0badd0439b64 (patch)
tree9163a31d469cb0192bc2962b85ae81aa8240a572 /src/osd
parentfc3e486d99102831178a295236e972bb107f6968 (diff)
Add -share_directory option. This sets a directory on the host system which emulated systems can directly access. [R. Belmont]
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/windows/winmain.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osd/windows/winmain.cpp b/src/osd/windows/winmain.cpp
index 4a779628f71..e37dd725034 100644
--- a/src/osd/windows/winmain.cpp
+++ b/src/osd/windows/winmain.cpp
@@ -458,6 +458,7 @@ windows_options::windows_options()
set_default_value(OPTION_SNAPSHOT_DIRECTORY, osd::text::from_wstring((LPCWSTR)path->Data()) + snapshot_directory());
set_default_value(OPTION_DIFF_DIRECTORY, osd::text::from_wstring((LPCWSTR)path->Data()) + diff_directory());
set_default_value(OPTION_COMMENT_DIRECTORY, osd::text::from_wstring((LPCWSTR)path->Data()) + comment_directory());
+ set_default_value(OPTION_SHARE_DIRECTORY, osd::text::from_wstring((LPCWSTR)path->Data()) + share_directory());
set_default_value(OPTION_HOMEPATH, osd::text::from_wstring((LPCWSTR)path->Data()));
set_default_value(OPTION_MEDIAPATH, osd::text::from_wstring((LPCWSTR)path->Data()) + media_path());