Skip to content

Commit 8133c93

Browse files
authored
rt_datadir.c: fix another oversight (#111)
1 parent 93cdf01 commit 8133c93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rott/rt_datadir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ static void AddStorefrontDirs(void)
294294
{
295295
for (int i = 0; i < num_storefront_paths_home; i++)
296296
{
297-
M_snprintf(path, sizeof(path), "%s%s", prefix, storefront_paths[i]);
297+
M_snprintf(path, sizeof(path), "%s%s", prefix, storefront_paths_home[i]);
298298

299299
if (stat(path, &st) == 0 && S_ISDIR(st.st_mode))
300300
AddDataDir(M_StringDuplicate(path));

0 commit comments

Comments
 (0)