mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
perfect SetDeviceName
This commit is contained in:
parent
8b58e6fe28
commit
e6f8da256f
1 changed files with 8 additions and 7 deletions
|
@ -30,20 +30,21 @@ MxVideoParam &MxVideoParam::operator=(const MxVideoParam &other)
|
|||
return *this;
|
||||
}
|
||||
|
||||
// TODO: this doesn't match exactly, something weird with the conditional on id
|
||||
void MxVideoParam::SetDeviceName(char *id)
|
||||
{
|
||||
if (this->m_deviceId != 0)
|
||||
free(this->m_deviceId);
|
||||
|
||||
if (id == 0)
|
||||
{
|
||||
this->m_deviceId = 0;
|
||||
}
|
||||
else
|
||||
if (id != 0)
|
||||
{
|
||||
this->m_deviceId = (char *)malloc(strlen(id) + 1);
|
||||
strcpy(this->m_deviceId, id);
|
||||
|
||||
if (this->m_deviceId != 0) {
|
||||
strcpy(this->m_deviceId, id);
|
||||
}
|
||||
}
|
||||
else {
|
||||
this->m_deviceId = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue