diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-21 00:40:25 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-21 00:40:25 -0700 |
commit | f8d991fc1b1ab7ae0c3d8a0307b8b2419d152278 (patch) | |
tree | 6e096f49fe0a837e98c21550ab03d4e59fbb4e75 /default.cfg | |
parent | 7555497336ede90b9560d66684001c81902b01e1 (diff) |
Allow initial_path to contain variable references which allows the default value to be actually specified in the default config file
Diffstat (limited to 'default.cfg')
-rw-r--r-- | default.cfg | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/default.cfg b/default.cfg index 0ff4e37..424a93d 100644 --- a/default.cfg +++ b/default.cfg @@ -195,9 +195,12 @@ clocks { } ui { + #specifies the ROM that implements the Menu UI rom menu.bin - #initial_path defaults to your home/user profile directory if not specified - #screenshot_path behaves the same way + #starting path for ROM browsing, accepts special variables $HOME, $EXEDIR + #and variables defined in the OS environment + initial_path $HOME + #screenshot_path defaults to the user's home/profile directory if not specified #see strftime for the format specifiers valid in screenshot_template screenshot_template blastem_%c.ppm } |