Changeset 25939
- Timestamp:
- 02/06/14 22:19:43 (8 years ago)
- Location:
- titan/titan
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/global.h
r25887 r25939 1741 1741 // disable Reader Config manual start 1742 1742 if(ostrcmp("Reader Config", child->name) == 0) child->locked = 1; 1743 1744 // hide this menu on all boxes without ATEMIO530 1745 if(checkbox("ATEMIO530") != 1) 1746 { 1747 if(ostrcmp("settings_pluginbutton", child->name) == 0) child->locked = 1; 1748 } 1743 1749 1744 1750 // hide this menu on all boxes without ufs912 -
titan/titan/header.h
r25843 r25939 8 8 #ifndef HEADER_H 9 9 #define HEADER_H 10 11 // settings_pluginbutton.h 12 void screensettings_pluginbutton(); 10 13 11 14 // settings_overclocking.h -
titan/titan/menu.h
r25559 r25939 665 665 screensettings_bluebutton(); 666 666 } 667 else if(ostrcmp("settings_pluginbutton", menuentry->name) == 0) 668 { 669 if(check == 1) return 0; 670 screensettings_pluginbutton(); 671 } 667 672 else if(ostrcmp("feed", menuentry->name) == 0) 668 673 { -
titan/titan/titan.c
r25930 r25939 238 238 #include "settings_autostart.h" 239 239 #include "settings_overclocking.h" 240 #include "settings_pluginbutton.h" 240 241 241 242 #define TIMECODE ""
Note: See TracChangeset
for help on using the changeset viewer.