From 25803916cbb2af3e23d6aa491c8b33328b3f01d0 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 22 Nov 2022 00:56:55 +0000 Subject: [PATCH] Fix mid-move icons They've been broken since the move to CMake, which had an incorrect variable substitution in the --redo argument. --- icons/icons.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icons/icons.cmake b/icons/icons.cmake index 8edbad7..1b3e690 100644 --- a/icons/icons.cmake +++ b/icons/icons.cmake @@ -110,7 +110,7 @@ function(build_icon name) # play, which will be the base image we make everything else out # out. if(DEFINED ${name}_redo) - set(redo_arg --redo ${name}_redo) + set(redo_arg --redo ${${name}_redo}) else() set(redo_arg) endif()