Changeset 34939
- Timestamp:
- Aug 1, 2015, 7:49:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/mc/mc_videoplayer.h
r32753 r34939 8 8 void screenmc_videoplayer() 9 9 { 10 int videooff = 0; 10 11 // workaround for grey background mvi 11 12 struct skin* loadmediadb = getscreen("loading"); … … 110 111 refresh = 0; 111 112 112 if((status.play == 1 ) || (status.playspeed != 0))113 if((status.play == 1 || status.playspeed != 0) && videooff == 0) 113 114 { 114 115 playinfobarcount ++; … … 556 557 } 557 558 } 559 else if(rcret == getrcconfigint("rcpower", NULL) && status.play == 1 && videooff == 0) 560 { 561 printf("1111\n"); 562 videooff = 1; 563 drawscreen(blackscreen, 0, 0); 564 } 565 else if(rcret == getrcconfigint("rcexit", NULL) && status.play == 1 && videooff == 1) 566 { 567 printf("2222\n"); 568 videooff = 0; 569 drawscreen(skin, 0, 0); 570 } 558 571 else if(rcret == getrcconfigint("rcstop", NULL) || (rcret == getrcconfigint("rcexit", NULL) && status.play == 1)) 559 572 {
Note: See TracChangeset
for help on using the changeset viewer.