mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
delroth pointed out that it should be "starts with" not "contains". Unlikely this has ever affected anyone....
This commit is contained in:
@ -287,7 +287,7 @@ void ExecuteCommand(u32 _Address)
|
||||
// check if a device with this name has been created already
|
||||
if (DeviceName.find("/dev/") == std::string::npos || DeviceID == -1)
|
||||
{
|
||||
if (DeviceName.find("/dev/") != std::string::npos)
|
||||
if (DeviceName.find("/dev/") == 0)
|
||||
{
|
||||
WARN_LOG(WII_IPC_HLE, "Unimplemented device: %s", DeviceName.c_str());
|
||||
|
||||
|
Reference in New Issue
Block a user