Fix mid-move icons

They've been broken since the move to CMake, which had an incorrect
variable substitution in the --redo argument.
This commit is contained in:
Ben Harris
2022-11-22 00:56:55 +00:00
parent 434e6a43cf
commit 25803916cb

View File

@ -110,7 +110,7 @@ function(build_icon name)
# play, which will be the base image we make everything else out # play, which will be the base image we make everything else out
# out. # out.
if(DEFINED ${name}_redo) if(DEFINED ${name}_redo)
set(redo_arg --redo ${name}_redo) set(redo_arg --redo ${${name}_redo})
else() else()
set(redo_arg) set(redo_arg)
endif() endif()