Changeset 12110
- Timestamp:
- Dec 8, 2011, 11:48:48 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/mc/mc_videoplayer.h
r10720 r12110 79 79 { 80 80 if((status.play == 1) || (status.playspeed != 0)) 81 playrcjumpr(filename, skip13, &playinfobarstatus, &playinfobarcount, flag); 82 } 83 else if(rcret == getrcconfigint("rc4", NULL)) 84 { 85 if((status.play == 1) || (status.playspeed != 0)) 86 playrcjumpr(filename, skip46, &playinfobarstatus, &playinfobarcount, flag); 87 } 88 else if(rcret == getrcconfigint("rc7", NULL)) 89 { 90 if((status.play == 1) || (status.playspeed != 0)) 91 playrcjumpr(filename, skip79, &playinfobarstatus, &playinfobarcount, flag); 92 } 93 else if(rcret == getrcconfigint("rc3", NULL)) 94 { 95 if((status.play == 1) || (status.playspeed != 0)) 81 96 playrcjumpf(filename, skip13, &playinfobarstatus, &playinfobarcount, flag); 82 97 } 83 else if(rcret == getrcconfigint("rc 4", NULL))98 else if(rcret == getrcconfigint("rc6", NULL)) 84 99 { 85 100 if((status.play == 1) || (status.playspeed != 0)) 86 101 playrcjumpf(filename, skip46, &playinfobarstatus, &playinfobarcount, flag); 87 102 } 88 else if(rcret == getrcconfigint("rc 7", NULL))103 else if(rcret == getrcconfigint("rc9", NULL)) 89 104 { 90 105 if((status.play == 1) || (status.playspeed != 0)) 91 106 playrcjumpf(filename, skip79, &playinfobarstatus, &playinfobarcount, flag); 92 107 } 93 else if(rcret == getrcconfigint("rc3", NULL))94 {95 if((status.play == 1) || (status.playspeed != 0))96 playrcjumpr(filename, skip13, &playinfobarstatus, &playinfobarcount, flag);97 }98 else if(rcret == getrcconfigint("rc6", NULL))99 {100 if((status.play == 1) || (status.playspeed != 0))101 playrcjumpr(filename, skip46, &playinfobarstatus, &playinfobarcount, flag);102 }103 else if(rcret == getrcconfigint("rc9", NULL))104 {105 if((status.play == 1) || (status.playspeed != 0))106 playrcjumpr(filename, skip79, &playinfobarstatus, &playinfobarcount, flag);107 }108 108 else if(rcret == getrcconfigint("rcleft", NULL)) 109 109 { 110 110 if((status.play == 1) || (status.playspeed != 0)) 111 playrcjumpr(filename, -60, &playinfobarstatus, &playinfobarcount, flag);111 playrcjumpr(filename, 60, &playinfobarstatus, &playinfobarcount, flag); 112 112 } 113 113 else if(rcret == getrcconfigint("rcright", NULL)) 114 114 { 115 115 if((status.play == 1) || (status.playspeed != 0)) 116 playrcjump r(filename, 60, &playinfobarstatus, &playinfobarcount, flag);116 playrcjumpf(filename, 60, &playinfobarstatus, &playinfobarcount, flag); 117 117 } 118 118 else if(rcret == getrcconfigint("rcdown", NULL)) 119 119 { 120 120 if((status.play == 1) || (status.playspeed != 0)) 121 playrcjumpr(filename, -600, &playinfobarstatus, &playinfobarcount, flag);121 playrcjumpr(filename, 600, &playinfobarstatus, &playinfobarcount, flag); 122 122 } 123 123 else if(rcret == getrcconfigint("rcup", NULL)) 124 124 { 125 125 if((status.play == 1) || (status.playspeed != 0)) 126 playrcjump r(filename, 600, &playinfobarstatus, &playinfobarcount, flag);126 playrcjumpf(filename, 600, &playinfobarstatus, &playinfobarcount, flag); 127 127 } 128 128
Note: See TracChangeset
for help on using the changeset viewer.