winmm: Remove some dead code.

This commit is contained in:
Maarten Lankhorst 2010-03-31 20:19:51 +02:00 committed by Alexandre Julliard
parent 4f4dd855c4
commit 3a96c85cfb
1 changed files with 0 additions and 7 deletions

View File

@ -119,13 +119,6 @@ DWORD MMDRV_Message(LPWINE_MLD mld, UINT wMsg, DWORD_PTR dwParam1,
lpDrv = &MMDrvs[mld->mmdIndex];
part = &lpDrv->parts[mld->type];
#if 0
/* some sanity checks */
if (!(part->nIDMin <= devID))
ERR("!(part->nIDMin(%d) <= devID(%d))\n", part->nIDMin, devID);
if (!(devID < part->nIDMax))
ERR("!(devID(%d) < part->nIDMax(%d))\n", devID, part->nIDMax);
#endif
assert(part->fnMessage32);