diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-13 12:12:35 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-13 12:12:35 -0400 |
commit | d4815bc7cb93e1af5828c0d195d91d822fb1c0b2 (patch) | |
tree | 0e9d609a6938da85ccd20f1547128a6a4ce9a95a | |
parent | 717b8f3b04e5f573e6dd1f1ee1b245b60a24a878 (diff) |
Newlines not specific to Notepad++
-rw-r--r-- | Remove-Pokémon-sprite-animations.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Remove-Pokémon-sprite-animations.md b/Remove-Pokémon-sprite-animations.md index ec21526..eb08f53 100644 --- a/Remove-Pokémon-sprite-animations.md +++ b/Remove-Pokémon-sprite-animations.md @@ -538,7 +538,7 @@ Another way is to crop the sprites *after* they've been converted from .png to . (If you're replacing the 251 Gen 2 Pokémon with your own set, then skip this step. And of course when you're drawing front sprites, just draw them as square still sprites, without any animated frames.) -Create **tools/trim_animation.sh** (make sure to save it with [unix line endings](https://stackoverflow.com/a/8195860)): +Create **tools/trim_animation.sh**: ```sh #!/bin/sh @@ -556,6 +556,8 @@ head -c $bytes $1 > $temp_file mv $temp_file $1 ``` +(Be sure to use [Unix line endings](https://blog.codinghorror.com/the-great-newline-schism/), not DOS/Windows, just like all the other text files in pokecrystal!) + Then edit the [Makefile](../blob/master/Makefile): ```diff |