diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-17 17:19:43 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-17 17:20:19 +0200 |
commit | ecf58f9e8fa791d79aec1c0051ac01e2a1037c6a (patch) | |
tree | e9582116767bfac360146ca1703ad848bb469776 | |
parent | c60fdf109150312c1ba5e749aff6196f098b2752 (diff) | |
download | EpisodeBrowser-ecf58f9e8fa791d79aec1c0051ac01e2a1037c6a.tar.gz |
Fix CfgA.
It's a bit stupid to rely on a constant whose value I don't
control myself.
-rw-r--r-- | c/data.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ struct CfgA int iFocus = 0; int heightDlv = 0; wchar_t limitScreenwriter[64] = {0}; - wchar_t root[MAX_PATH] = {0}; + wchar_t root[260] = {0}; wchar_t glob[64] = {0}; wchar_t url[192] = {0}; }; |