Skip to content

Commit a42e94b

Browse files
committed
webMAN MOD 1.47.47n
- Changed method used to fix the bug listing names between square brackets - Fixed issue saving the setting for ONLINE COVERS in Lite edition
1 parent ce3eb67 commit a42e94b

File tree

9 files changed

+3
-6
lines changed

9 files changed

+3
-6
lines changed
13 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
-9 Bytes
Binary file not shown.
Binary file not shown.
13 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
Binary file not shown.

include/scan/games_xml.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,10 +1224,10 @@ static bool scan_mygames_xml(u64 conn_s_p)
12241224
get_name(title, entry.entry_name.d_name + 2, 0);
12251225
else if(islike(file_name, folder_name + 1))
12261226
get_name(title, p + 1, 0);
1227+
else if(!file_name[0])
1228+
strcopy(title, folder_name + 1);
12271229
else
12281230
sprintf(title, "[%s] %s", folder_name + 1, file_name);
1229-
1230-
if(!file_name[0]) remove_brackets(trim(title));
12311231
}
12321232
}
12331233
}

include/setup.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,8 @@ static void setup_parse_settings(char *param)
239239
// if( IS_MARKED("ic=0" )) webman_config->nocov = SHOW_MMCOVERS; // default
240240
if( IS_MARKED("nc=1" )) webman_config->nocov = SHOW_ICON0; else // (0 = Use MM covers, 1 = Use ICON0.PNG, 2 = No game icons, 3 = Online Covers)
241241
if( IS_MARKED("ic=1" )) webman_config->nocov = SHOW_ICON0; else
242-
if( IS_MARKED("ic=2" )) webman_config->nocov = SHOW_DISC;
243-
#ifndef ENGLISH_ONLY
244-
else
242+
if( IS_MARKED("ic=2" )) webman_config->nocov = SHOW_DISC; else
245243
if( IS_MARKED("ic=3" )) webman_config->nocov = ONLINE_COVERS;
246-
#endif
247244

248245
webman_config->ftp_port = get_port(param, "ff=", 21);
249246
webman_config->ftp_timeout = get_valuen(param, "tm=", 0, 255); //mins

0 commit comments

Comments
 (0)