A lot of fixes - everything now seems to work properly.

This commit is contained in:
OBattler
2022-02-03 03:10:06 +01:00
parent 296e25c685
commit 6f2b93923c
59 changed files with 551 additions and 521 deletions

View File

@@ -192,6 +192,16 @@ device_add_common(const device_t *d, const device_t *cd, void *p, int inst)
}
char *
device_get_internal_name(const device_t *d)
{
if (d == NULL)
return "";
return (char *) d->internal_name;
}
void *
device_add(const device_t *d)
{