Changeset 25567


Ignore:
Timestamp:
01/10/14 10:32:08 (9 years ago)
Author:
obi
Message:

next test

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/infobar.h

    r25556 r25567  
    132132                }
    133133
    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))
    135135                {
    136136                        //timeshift
     
    163163                        if(rcret == getrcconfigint("rcplay", NULL))
    164164                        {
    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)
    166166                                {
    167167                                        if(status.playing == 0 || (status.playspeed == 0 && status.slowspeed == 0 && status.pause == 0))
  • titan/titan/titan.c

    r25482 r25567  
    866866//                      if(screenlanguage(2) == 2) return 100;
    867867//                      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                       
    868889                        screentunerconfig();
    869890                        resettvpic();
Note: See TracChangeset for help on using the changeset viewer.