Changeset 46


Ignore:
Timestamp:
May 7, 2023, 10:18:47 PM (2 years ago)
Author:
gyoung
Message:

Fix missing = sign

Location:
trunk/classes/mm-progs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/mm-progs/MMPlayer/mmplayer.c

    r2 r46  
    831831        return (MRESULT)0;
    832832      }
    833       else if(SHORT1FROMMP(mp1)=IDTIMER_START_PLAYING)
     833      else if(SHORT1FROMMP(mp1)==IDTIMER_START_PLAYING)
    834834        {
    835835          WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, IDTIMER_START_PLAYING);
  • trunk/classes/mm-progs/videoplayer/mmplayer.c

    r2 r46  
    840840        return (MRESULT)0;
    841841      }
    842       else if(SHORT1FROMMP(mp1)=IDTIMER_START_PLAYING)
     842      else if(SHORT1FROMMP(mp1)==IDTIMER_START_PLAYING)
    843843        {
    844844          WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, IDTIMER_START_PLAYING);
Note: See TracChangeset for help on using the changeset viewer.