diff options
author | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:58:23 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:58:23 +0800 |
commit | 7e88dd4e6b5431a6c7bb2187965fd019261e5f3c (patch) | |
tree | 242aa5954732782536989ca452bb2a52ce2af0ac /ethereal | |
parent | 61d5d107b6f274cb1bf4ba6fda015ae30d28d2a6 (diff) | |
download | dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar.gz dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar.bz2 dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar.lz dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar.xz dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.tar.zst dexon-7e88dd4e6b5431a6c7bb2187965fd019261e5f3c.zip |
Setup default asset path for windows
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/flags.go b/ethereal/flags.go index 2c9b3af5f..9a4318855 100644 --- a/ethereal/flags.go +++ b/ethereal/flags.go @@ -53,7 +53,7 @@ func defaultAssetPath() string { case "linux": assetPath = "/usr/share/ethereal" case "window": - fallthrough + assetPath = "./assets" default: assetPath = "." } |