We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After 0.1.3, the palette script was updated to use the new header name.
0.1.3
palette
However, this is not enough to ensure the needed symbol are resolved within the generated palette.h, as of s4c 0.4.8.
palette.h
s4c 0.4.8
Changing the generated include code may solve the issue:
include
#ifndef S4C_HAS_ANIMATE #define S4C_SCRIPTS_PALETTE_ANIMATE_CLEANUP #define S4C_HAS_ANIMATE #endif //!S4C_HAS_ANIMATE #include "sprites4curses/src/s4c.h" #ifdef PALETTE_ANIMATE_CLEANUP #undef S4C_HAS_ANIMATE #undef S4C_SCRIPTS_PALETTE_ANIMATE_CLEANUP #endif //PALETTE_ANIMATE_CLEANUP
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After
0.1.3
, thepalette
script was updated to use the new header name.However, this is not enough to ensure the needed symbol are resolved within the generated
palette.h
, as ofs4c 0.4.8
.Changing the generated
include
code may solve the issue:The text was updated successfully, but these errors were encountered: