diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-22 00:56:55 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-22 00:57:55 +0000 |
| commit | 25803916cbb2af3e23d6aa491c8b33328b3f01d0 (patch) | |
| tree | 56bbd9d20c4a48c0cdb6d64e02a40aa2e041235a | |
| parent | 434e6a43cfa58ab88f91236fb9a9e915e644026f (diff) | |
| download | puzzles-25803916cbb2af3e23d6aa491c8b33328b3f01d0.zip puzzles-25803916cbb2af3e23d6aa491c8b33328b3f01d0.tar.gz puzzles-25803916cbb2af3e23d6aa491c8b33328b3f01d0.tar.bz2 puzzles-25803916cbb2af3e23d6aa491c8b33328b3f01d0.tar.xz | |
Fix mid-move icons
They've been broken since the move to CMake, which had an incorrect
variable substitution in the --redo argument.
| -rw-r--r-- | icons/icons.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
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() |