| 53 |  | bool patch_cheater = true; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 54 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 55 |  | bool opt_usedaodanbsl = true; | 
 
 
 
 
 
 
 
 | 56 | + | bool opt_border = true; | 
 
 
 
 
 
 
 
 | 57 | + | bool opt_shadow = true; | 
 
 
 
 
 
 
 
 | 58 | + | bool opt_topmost = false; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 59 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 60 |  | bool DDrPatch_Init() | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 61 |  | { | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 215 |  | case s_options: | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 216 |  | if (!stricmp(name, "usedaodanbsl")) | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 217 |  | opt_usedaodanbsl = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 | 218 | + | else if (!stricmp(name, "border")) | 
 
 
 
 
 
 
 
 | 219 | + | opt_border = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 | 220 | + | else if (!stricmp(name, "shadow")) | 
 
 
 
 
 
 
 
 | 221 | + | opt_shadow = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 | 222 | + | else if (!stricmp(name, "topmost")) | 
 
 
 
 
 
 
 
 | 223 | + | opt_topmost = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 | 224 | + | else if (!stricmp(name, "multibyte")) | 
 
 
 
 
 
 
 
 | 225 | + | patch_multibyte = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 226 |  | else if (!stricmp(name, "debug")) | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 227 |  | AKgDebug_DebugMaps = !stricmp(inifile_cleanstr(value), "true"); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 228 |  | else if (!stricmp(name, "debugfiles")) |