diff options
Diffstat (limited to 'src/emu/clifront.c')
| -rw-r--r-- | src/emu/clifront.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/clifront.c b/src/emu/clifront.c index 15717b824bd..66852e7a3cd 100644 --- a/src/emu/clifront.c +++ b/src/emu/clifront.c @@ -566,7 +566,7 @@ int cli_info_listsamples(core_options *options, const char *gamename) for (sndnum = 0; sndnum < MAX_SOUND && drv.sound[sndnum].type != SOUND_DUMMY; sndnum++) if (drv.sound[sndnum].type == SOUND_SAMPLES) { - const char **samplenames = ((struct Samplesinterface *)drv.sound[sndnum].config)->samplenames; + const char *const *samplenames = ((const struct Samplesinterface *)drv.sound[sndnum].config)->samplenames; int sampnum; /* if the list is legit, walk it and print the sample info */ |
