Changeset 25589 for titan


Ignore:
Timestamp:
01/10/14 12:53:34 (9 years ago)
Author:
obi
Message:

atemio520 fix player stuff

Location:
titan
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/mc/mc_audioplayer.h

    r25088 r25589  
    368368                                playrcfr(filename, NULL, &playinfobarstatus, &playinfobarcount, playertype, 2);
    369369                }
    370                 else if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0))
     370                else 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))
    371371                {
    372372                        if(status.pause == 1)
  • titan/plugins/mc/mc_pictureplayer.h

    r25088 r25589  
    119119                        textbox(_("Message"), _("Shooting Background done !\nSave Screenshoot Path: /tmp/screenshot.jpg"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0);
    120120                }
    121                 else if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0))
     121                else 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))
    122122                {
    123123                        if((status.play == 1) || (status.pause == 1))
  • titan/plugins/mc/mc_videoplayer.h

    r25410 r25589  
    391391                                playrcfr(filename, NULL, &playinfobarstatus, &playinfobarcount, playertype, flag);
    392392                }
    393                 else if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0))
     393                else 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))
    394394                {
    395395                        if((status.play == 1) || (status.pause == 1) || (status.playspeed != 0))
  • titan/titan/play.h

    r25502 r25589  
    15521552                                        playrcfr(file, showname, &playinfobarstatus, &playinfobarcount, playertype, flag);
    15531553
    1554                                 if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0))
     1554                                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))
    15551555                                {       
    15561556                                        playrcpause(file, showname, &playinfobarstatus, &playinfobarcount, playertype, flag);
Note: See TracChangeset for help on using the changeset viewer.