Changeset 25482


Ignore:
Timestamp:
01/06/14 17:41:44 (9 years ago)
Author:
obi
Message:

move overclocking ti titan

Location:
titan/titan
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/global.h

    r25406 r25482  
    16871687// disable Reader Config manual start
    16881688                        if(ostrcmp("Reader Config", child->name) == 0) child->locked = 1;
     1689
     1690                        // show this menus
     1691                        if(checkbox("UFS912") == 0)
     1692                        {
     1693                                if(ostrcmp("overclocking", child->name) == 0) child->locked = 0;
     1694                        }
    16891695
    16901696                        // dont show this menus
  • titan/titan/header.h

    r25480 r25482  
    88#ifndef HEADER_H
    99#define HEADER_H
     10
     11// settings_overclocking.h
     12void screensettings_overclocking();
    1013
    1114// settings_autostart.h
  • titan/titan/menu.h

    r25478 r25482  
    425425                screennetwork(6);
    426426        }
     427        else if(ostrcmp("overclocking", menuentry->name) == 0)
     428        {
     429                if(check == 1) return 0;
     430                screensettings_overclocking();
     431        }
    427432        else if(ostrcmp("autostart_default", menuentry->name) == 0)
    428433        {
  • titan/titan/titan.c

    r25478 r25482  
    237237#include "hwtest.h"
    238238#include "settings_autostart.h"
     239#include "settings_overclocking.h"
    239240
    240241#define TIMECODE ""
Note: See TracChangeset for help on using the changeset viewer.