• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Graphics] Error when trying to make pokeemerald-expansion with "Show Type Effectiveness In Battle"

  • 6
    Posts
    1
    Years
    • Seen Apr 17, 2025
    I followed the guide from devolov here step-by-step except the final "Adding Show Effectiveness Toggle in Option Menu" because I don't want an option to toggle.
    When I tried to compile it, I got the following error:
    Code:
    pokeemerald-expansion % make
    tools/gbagfx/gbagfx graphics/battle_interface/text.pal graphics/battle_interface/text.gbapal
    LF line endings aren't supported.
    make: *** [graphics/battle_interface/text.gbapal] Error 1
    The error stays the same regardless of whether I remove text.gbapal and text.gbapal.lz in the pokeemerald-expansion\graphics\battle_interface folder or leave them in.
    Any ideas of what I need to do?
     
    I followed the guide from devolov here step-by-step except the final "Adding Show Effectiveness Toggle in Option Menu" because I don't want an option to toggle.
    When I tried to compile it, I got the following error:
    Code:
    pokeemerald-expansion % make
    tools/gbagfx/gbagfx graphics/battle_interface/text.pal graphics/battle_interface/text.gbapal
    LF line endings aren't supported.
    make: *** [graphics/battle_interface/text.gbapal] Error 1
    The error stays the same regardless of whether I remove text.gbapal and text.gbapal.lz in the pokeemerald-expansion\graphics\battle_interface folder or leave them in.
    Any ideas of what I need to do?
    The terminal is telling you that your graphics/battle_interface/text.pal file has the wrong End of Line/Line Ending format.
    Palettes are expected to use the CRLF format, but your file uses the LF format.
    You can change a text file's End of Line format with Notepad++ by going to Edit -> EOL Conversion -> Windows (CR LF).
     
    The terminal is telling you that your graphics/battle_interface/text.pal file has the wrong End of Line/Line Ending format.
    Palettes are expected to use the CRLF format, but your file uses the LF format.
    You can change a text file's End of Line format with Notepad++ by going to Edit -> EOL Conversion -> Windows (CR LF).
    i tried this but now this is the error
    Unexpected EOF. No CRLF at end of file.
     
    Back
    Top