mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- fixed warnings.
This commit is contained in:
parent
3e4d53e8b6
commit
829d43baed
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ struct MidiDeviceList
|
|||
WideCharToMultiByte(CP_UTF8, 0, caps.szPname, (int)len, outbuf, size_needed, nullptr, nullptr);
|
||||
outbuf[size_needed] = 0;
|
||||
|
||||
MidiOutDevice mdev = { outbuf, id, caps.wTechnology };
|
||||
MidiOutDevice mdev = { outbuf, (int)id, (int)caps.wTechnology };
|
||||
devices.push_back(mdev);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue