Adjustment to -listdevices output to allow for more depth and better separation between device name and description in extreme cases. (nw)

This commit is contained in:
Scott Stone 2014-03-20 21:50:53 +00:00
parent cf9cadd1e5
commit 5f18171d6d

View File

@ -634,7 +634,7 @@ void cli_frontend::listdevices(const char *gamename)
depth++;
}
}
printf(" %*s%-*s%s", depth * 2, "", 24 - depth * 2, tag, device->name());
printf(" %*s%-*s %s", depth * 2, "", 30 - depth * 2, tag, device->name());
// add more information
UINT32 clock = device->clock();