Changeset 41616
- Timestamp:
- 01/05/18 15:14:05 (5 years ago)
- Location:
- titan/titan
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/avsettings.h
r41221 r41616 107 107 setchoiceboxselection(policy, ret); 108 108 free(ret); ret = NULL; 109 if(check box("HD51") == 0)109 if(checkrealbox("HD51") == 0) 110 110 { 111 111 ret = getaspectchoices(); … … 123 123 #endif 124 124 125 if(check box("HD51") == 0)125 if(checkrealbox("HD51") == 0) 126 126 { 127 127 ret = getcolorformat(2); … … 187 187 free(ret); ret = NULL; 188 188 189 if(check box("HD51") == 0)189 if(checkrealbox("HD51") == 0) 190 190 { 191 191 ret = getaacchoices(); … … 236 236 #endif 237 237 238 if(check box("HD51") == 0)238 if(checkrealbox("HD51") == 0) 239 239 { 240 240 ret = getwsschoices(); -
titan/titan/ca.h
r41428 r41616 143 143 if(dvbnode->caslot != NULL && flag == 0) dvbnode->caslot->fastrun = getconfigint("camwait", NULL); 144 144 } 145 if(check box("HD51") == 1)145 if(checkrealbox("HD51") == 1) 146 146 usleep(150000); 147 147 for(i = 0; i < 10; i++) … … 152 152 sleep(1); 153 153 } 154 if(checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1 || check box("HD51") == 1)154 if(checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1 || checkrealbox("HD51") == 1) 155 155 usleep(150000); 156 156 if(ret >= 0 && ret == count && dvbnode != NULL && dvbnode->caslot != NULL) dvbnode->caslot->poll = 0; … … 1902 1902 free(buf); buf = NULL; 1903 1903 dvbnode->caslot->poll = 0; 1904 if(checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1 || check box("HD51") == 1)1904 if(checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1 || checkrealbox("HD51") == 1) 1905 1905 sleep(1); 1906 1906 return ret; -
titan/titan/dmxdev.h
r41334 r41616 474 474 return 1; 475 475 } 476 if(check box("HD51") == 1) //source darf bei dieser Box nur einmal gesetzt werden, löscht ansonsten die Filter.476 if(checkrealbox("HD51") == 1) //source darf bei dieser Box nur einmal gesetzt werden, l\F6scht ansonsten die Filter. 477 477 { 478 478 if(node->fedmxsource == source) … … 499 499 else 500 500 { 501 if(check box("HD51") == 1)501 if(checkrealbox("HD51") == 1) 502 502 { 503 struct dvbdev* nodeh = dvbdev;503 struct dvbdev* nodeh = dvbdev; 504 504 while(nodeh != NULL) 505 505 { … … 576 576 //workaround HD51 kann nur max 4 dvr ... warum?? 577 577 int help = MAXDEMUXDEV; 578 if(check box("HD51") == 1)578 if(checkrealbox("HD51") == 1) 579 579 help = 4; 580 580 // -
titan/titan/dvbdev.h
r41327 r41616 105 105 } 106 106 107 if(check box("HD51") == 1 && type == DEMUXDEV)107 if(checkrealbox("HD51") == 1 && type == DEMUXDEV) 108 108 newnode->fedmxsource = -1; 109 109 -
titan/titan/dvrdev.h
r41334 r41616 79 79 //workaround HD51 kann nur max 4 dvr ... warum?? 80 80 int help = MAXDVRDEV; 81 if(check box("HD51") == 1)81 if(checkrealbox("HD51") == 1) 82 82 help = 4; 83 83 // -
titan/titan/menu.h
r41391 r41616 554 554 if(check == 1) 555 555 { 556 if(check box("HD51") == 1)556 if(checkrealbox("HD51") == 1) 557 557 return 0; 558 558 else -
titan/titan/mipselport.h
r41519 r41616 204 204 debug(444, "FB: var_screeninfo.grayscale %d", var_screeninfo.grayscale); 205 205 206 if(check box("HD51") == 0 && checkbox("DM7020HD") == 0 && checkbox("DM7020HDV2") == 0 && checkbox("DM900") == 0 && checkbox("DM520") == 0 && checkbox("DM525") == 0 )206 if(checkrealbox("HD51") == 0 && checkbox("DM7020HD") == 0 && checkbox("DM7020HDV2") == 0 && checkbox("DM900") == 0 && checkbox("DM520") == 0 && checkbox("DM525") == 0 ) 207 207 { 208 208 if(ioctl(fb->fd, FBIOPUT_VSCREENINFO, &var_screeninfo) < 0) -
titan/titan/titan.c
r41519 r41616 802 802 if(checkbox("DM7020HD") == 0 && checkbox("DM7020HDV2") == 0 && checkbox("VUSOLO2") == 0 && checkbox("DM900") == 0 && checkbox("DM520") == 0 && checkbox("DM525") == 0) 803 803 setfbosd(); 804 if(check box("HD51") ==1)804 if(checkrealbox("HD51") ==1) 805 805 setfbosdnull(); 806 806 status.usedirectfb = 1;
Note: See TracChangeset
for help on using the changeset viewer.