summaryrefslogtreecommitdiffstatshomepage
path: root/src/ldplayer
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2011-03-05 19:46:52 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2011-03-05 19:46:52 +0000
commit0ceaf2f12129c6652718bb95e7740275fabda28a (patch)
tree9636a4b916bb9411b409839b1d51872c8f29a70e /src/ldplayer
parent226a2c5a228c53b454b7e1f0d64868f96a829510 (diff)
ldplayer: fix compile, still crashes on startup (no whatsnew)
Diffstat (limited to 'src/ldplayer')
-rw-r--r--src/ldplayer/ldplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ldplayer/ldplayer.c b/src/ldplayer/ldplayer.c
index 97e47a00c01..6c84ed82492 100644
--- a/src/ldplayer/ldplayer.c
+++ b/src/ldplayer/ldplayer.c
@@ -117,7 +117,7 @@ static chd_file *get_disc(device_t *device)
if (filerr == FILERR_NONE)
{
/* try to open the CHD */
- chderr = chd_open_file(image_file, CHD_OPEN_READ, NULL, &image_chd);
+ chderr = chd_open_file(*image_file, CHD_OPEN_READ, NULL, &image_chd);
if (chderr == CHDERR_NONE)
{
set_disk_handle(*device->machine, "laserdisc", *image_file, *image_chd);