summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/polylgcy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/polylgcy.cpp')
-rw-r--r--src/devices/video/polylgcy.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/polylgcy.cpp b/src/devices/video/polylgcy.cpp
index 2b3f8ccee02..a4baa6e5c70 100644
--- a/src/devices/video/polylgcy.cpp
+++ b/src/devices/video/polylgcy.cpp
@@ -202,7 +202,7 @@ struct legacy_poly_manager
static void **allocate_array(running_machine &machine, size_t *itemsize, uint32_t itemcount);
static void *poly_item_callback(void *param, int threadid);
-static void poly_state_presave(legacy_poly_manager *poly);
+static void poly_state_presave(legacy_poly_manager &poly);
@@ -1359,7 +1359,7 @@ static void *poly_item_callback(void *param, int threadid)
ensure everything is synced before saving
-------------------------------------------------*/
-static void poly_state_presave(legacy_poly_manager *poly)
+static void poly_state_presave(legacy_poly_manager &poly)
{
- poly_wait(poly, "pre-save");
+ poly_wait(&poly, "pre-save");
}