- Timestamp:
- 03/20/14 23:04:15 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/settings_autostart.h
r27714 r27716 78 78 setchoiceboxselection(node, getownconfig(node->name)); 79 79 } 80 */ 81 if(checkbox("UFS910") == 1) 82 { 83 node = addlistbox(settings_autostart, listbox, node, 1); 84 if(node != NULL) 85 { 86 node->type = CHOICEBOX; 87 changetext(node, _("useUnknown910")); changename(node, "useUnknown910"); 88 addchoicebox(node, "1", _("yes")); addchoicebox(node, "0", _("no")); 89 setchoiceboxselection(node, getownconfig(node->name)); 90 } 91 } 80 */ 92 81 93 82 drawscreen(settings_autostart, 0, 0); … … 229 218 } 230 219 220 if(checkbox("UFS910") == 1) 221 { 222 node = addlistbox(settings_autostart, listbox, node, 1); 223 if(node != NULL) 224 { 225 node->type = CHOICEBOX; 226 changetext(node, _("useUnknown910")); changename(node, "useUnknown910"); 227 addchoicebox(node, "1", _("yes")); addchoicebox(node, "0", _("no")); 228 setchoiceboxselection(node, getownconfig(node->name)); 229 } 230 } 231 231 232 drawscreen(settings_autostart, 0, 0); 232 233 tmp = listbox->select; … … 295 296 } 296 297 */ 298 299 node = addlistbox(settings_autostart, listbox, node, 1); 300 if(node != NULL) 301 { 302 node->type = CHOICEBOX; 303 changetext(node, _("Ntfs Write")); 304 changename(node, "ntfs_write"); 305 addchoicebox(node, "0", _("disable")); 306 addchoicebox(node, "1", _("ntfs-3g")); 307 addchoicebox(node, "2", _("ntfsmount")); 308 setchoiceboxselection(node, getownconfig(node->name)); 309 } 310 297 311 node = addlistbox(settings_autostart, listbox, node, 1); 298 312 if(node != NULL)
Note: See TracChangeset
for help on using the changeset viewer.