Fixed a small error in the win32 global hotkeys implementation... mute was

not properly wired up.
This commit is contained in:
casey langen 2016-11-19 17:30:14 -08:00
parent a43ea0e2ce
commit f30686333e

View File

@ -88,7 +88,7 @@ LRESULT CALLBACK ShellProc(int code, WPARAM wParam, LPARAM lParam) {
case 'M':
case 'm':
playback->Previous();
playback->ToggleMute();
return 1;
}
}