Changeset 30854


Ignore:
Timestamp:
11/07/14 12:12:02 (9 years ago)
Author:
gost
Message:

fix

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/fancontrol.h

    r30852 r30854  
    109109        addchoicebox(fanon, "2", _("on"));
    110110        addchoicebox(fanon, "1", _("off"));
    111         setchoiceboxselection(fanon, getconfigint("fanmode", NULL));
     111        setchoiceboxselection(fanon, getconfig("fanmode", NULL));
    112112
    113113        addscreenrc(fancontrol, listbox);
  • titan/titan/menu.h

    r30852 r30854  
    7676                        child->hidden = YES;
    7777        }
     78        // Hide cec when sh4
     79        if(ostrcmp(child->name, "ceccontrol") == 0)
     80#ifdef MIPSEL
     81                child->hidden = NO;
     82#else
     83                child->hidden = YES;
     84#endif
    7885}
    7986
     
    605612                screensettings_fancontrol2();
    606613#endif
     614#ifdef MIPSEL
     615        else if(ostrcmp("ceccontrol", menuentry->name) == 0)
     616        {
     617                if(check == 1) return 0;
     618                        screencec();
     619        }
     620#endif
    607621        }
    608622        else if(ostrcmp("serviceinfo", menuentry->name) == 0)
Note: See TracChangeset for help on using the changeset viewer.