mirror of
https://github.com/cxong/cdogs-sdl.git
synced 2025-07-23 07:23:01 +02:00
9 lines
185 B
Bash
Executable File
9 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Recolor sprites based on C-Dogs palette
|
|
# TODO: force RGB, don't use grayscale
|
|
#
|
|
for image in *.png; do
|
|
convert "$image" +depth +dither -remap palette.png "$image"
|
|
done
|