From e24ff500ca4e7d929ea2dd5b32fab6b03c9137f6 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 30 Apr 2021 15:28:05 +0200 Subject: [PATCH] VRG: small fix --- src/video_display/vrg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_display/vrg.cpp b/src/video_display/vrg.cpp index 346732da7..a998fd8a8 100644 --- a/src/video_display/vrg.cpp +++ b/src/video_display/vrg.cpp @@ -131,7 +131,7 @@ struct state_vrg { #ifdef HAVE_CUDA video_frame_pool pool{0, vrg_cuda_allocator()}; #else - video_frame_pool pool{0, vrg_cuda_allocator()}; + video_frame_pool pool{0, default_data_allocator()}; #endif high_resolution_clock::time_point t0 = high_resolution_clock::now();