Changeset 25567
- Timestamp:
- 01/10/14 10:32:08 (9 years ago)
- Location:
- titan/titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/infobar.h
r25556 r25567 132 132 } 133 133 134 if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0 ))134 if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0 && ostrcmp(getconfig("remotecontrol", NULL), "0") == 0)) 135 135 { 136 136 //timeshift … … 163 163 if(rcret == getrcconfigint("rcplay", NULL)) 164 164 { 165 if( checkbox("ATEMIO520") != 1 && checkbox("ATEMIO530") != 1 && status.timeshifttype== 1)165 if((checkbox("ATEMIO520") != 1 && checkbox("ATEMIO530") != 1 && status.timeshifttype == 1) || && ostrcmp(getconfig("remotecontrol", NULL), "1") == 1) 166 166 { 167 167 if(status.playing == 0 || (status.playspeed == 0 && status.slowspeed == 0 && status.pause == 0)) -
titan/titan/titan.c
r25482 r25567 866 866 // if(screenlanguage(2) == 2) return 100; 867 867 // resettvpic(); 868 869 870 struct menulist* mlist = NULL, *mbox = NULL; 871 addmenulist(&mlist, "RemoteControl Long Version", "0", NULL, 0, 0); 872 addmenulist(&mlist, "RemoteControl Old Version", "1", NULL, 0, 0); 873 874 // mbox = menulistbox(mlist, "playlistmenu", NULL, "%pluginpath%/mc/skin", NULL, 1, 0); 875 mbox = menulistbox(mlist, NULL, NULL, NULL, NULL, 1, 0); 876 if(mbox != NULL) 877 { 878 free(title), title = NULL; 879 free(tmpstr), tmpstr = NULL; 880 881 debug(10, "mbox->name %s", mbox->name); 882 debug(10, "mbox->text %s", mbox->text); 883 884 title = ostrcat(mbox->text, NULL, 0, 0); 885 flag = 1; 886 goto start; 887 } 888 868 889 screentunerconfig(); 869 890 resettvpic();
Note: See TracChangeset
for help on using the changeset viewer.