Handful of function renames

This commit is contained in:
Jasmine Iwanek
2023-02-07 18:06:50 -05:00
parent 3dfb553555
commit fea5ac681b
6 changed files with 15 additions and 15 deletions

View File

@@ -748,7 +748,7 @@ device_is_valid(const device_t *device, int m)
int
machine_get_config_int(char *s)
{
const device_t *d = machine_getdevice(machine);
const device_t *d = machine_get_device(machine);
const device_config_t *c;
if (d == NULL)
@@ -768,7 +768,7 @@ machine_get_config_int(char *s)
char *
machine_get_config_string(char *s)
{
const device_t *d = machine_getdevice(machine);
const device_t *d = machine_get_device(machine);
const device_config_t *c;
if (d == NULL)