summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-22pngs in gfx/unown_puzzleyenatch
2017-06-22pngs in gfx/trainersyenatch
2017-06-22pngs in gfx/tradeyenatch
game_boy.png can be rearranged in a nicer way, but it's a job for another time
2017-06-21Add --interleave to tools/gfx and refactor.yenatch
For images composed of 8x16 sprites. The width has to be manually passed in. If this were an rgbgfx feature this would not be necessary. Fixes 647f9b4452fb166fedbbb987808bb0dae9623db2
2017-06-21pngs in gfx/titleyenatch
2017-06-21pngs in gfx/tilesetsyenatch
2017-06-21pngs in gfx/statsyenatch
2017-06-21pngs in gfx/splashyenatch
2017-06-21pngs in gfx/special/celebiyenatch
2017-06-21pngs in gfx/pokegearyenatch
- flymap_label_border.2bpp was actually 1bpp
2017-06-20pngs in gfx/pokedexyenatch
2017-06-20Use $(if) in the makefile. Fix gfx/mail.yenatch
Fixes 384788f3700a5c429dfa86c6ec673a648b4b1c42
2017-06-18Remove debug statement from tools/gfxyenatch
2017-06-18pngs in gfx/mailyenatch
2017-06-18Add `gfx` tool for graphics postprocessingyenatch
2017-06-17Merge pull request #366 from Ben10do/fix-deprecation-warningsyenatch
Replace ‘jp [hl]’ with ‘jp hl’
2017-06-13Merge pull request #367 from SkyrisBactera/patch-1yenatch
rgbds: Missing a dependency
2017-06-13Missing a dependencySkyrisBactera
Without libpng-dev, sudo make install causes: In file included from src/gfx/gb.c:20:0: include/gfx/main.h:20:17: fatal error: png.h: No such file or directory #include <png.h> ^ compilation terminated. Makefile:90: recipe for target 'src/gfx/gb.o' failed make: *** [src/gfx/gb.o] Error 1
2017-06-10Fix parallelisation issues in MakefileBen10do
Introduces a minor hack, in order to ensure that the tools are built before the Makefile attempts to use any of the tools, even when using ‘make -j’.
2017-06-09Fix warnings about assignments in ‘if’ statementsBen10do
Assignments in ‘if’ statements cause a warning in Clang, asking you to enclose the assignment in brackets (to show that it was intentional).
2017-06-09Remove ‘make tools’ step in installationBen10do
This step is no longer required, as it will be run automatically when making the ROM.
2017-06-09Add .gitignore for compiled toolsBen10do
2017-06-09Replace ‘jp [hl]’ with ‘jp hl’Ben10do
The former is arguably misleading (as you don’t access the memory location in hl to retrieve the jump location), and is consequently deprecated in newer versions of rgbds. This fix silences these deprecation warnings.
2017-06-09- Make the tools implicitly when making the ROMBen10do
- Add a clean target to the tools Makefile - Run said clean target when cleaning the pokecrystal directory
2017-06-08pngs in gfx/iconyenatch
2017-06-08pngs in gfx/framesyenatch
2017-06-08pngs in gfx/{debug,emotes,evo,font,intro}yenatch
2017-06-04pngs in gfx/overworldyenatch
2017-05-29Merge pull request #362 from yenatch/c-toolsyenatch
Replace the python tools with C tools and rgbgfx. Add Pokemon pngs
2017-05-29makefile misc qolyenatch
- md5sum: no more --quiet. this flag is not standard and seeing "OK" is probably better - saner use of $(roms)
2017-05-29Reorder the build targets for backwards compatibility with gmake 3.81.yenatch
2017-05-29Use a separate makefile for toolsyenatch
- Fix crystal11 - Fix a bug where the dependency checks would run regardless of target Fixes 0bd74cdd7341a4cff5da73e1c32ac0d237ec8e08
2017-05-28pokemon_animation_graphics: remove declarations from for loopsyenatch
2017-05-28pokemon_animation_graphics: stdint.hyenatch
2017-05-28travis: make toolsyenatch
2017-05-28Put more generated files in .gitignoreyenatch
2017-05-28Remove the now-generated animation data.yenatch
2017-05-28Change the compression hash for Girafarig's sprite.yenatch
2017-05-28Add targets for the pokemon animation edge cases.yenatch
2017-05-28Fix the pokemon animation tools.yenatch
Fixed a lot of serious bugs. These tools were not functional. Also added a --girafarig flag for a special case.
2017-05-28Fix rgbds link and versionyenatch
2017-05-28Fix no newline at eof in engine/time.asmyenatch
2017-05-28Fix crystal11 after cleanyenatch
2017-05-28Accidentally deleted the pokemon palette ruleyenatch
2017-05-28Merge remote-tracking branch 'origin/master' into c-toolsyenatch
2017-05-28Don't use the shiny palette when extracting backsprites.yenatch
This wasn't actually desirable.
2017-05-28Add new filetypes to .gitignoreyenatch
2017-05-28Add Pokemon pic pngs.yenatch
Copies of the matching compressed files are kept, so files with a matching hash will use the matching compressed file instead. This is the best that can be done until the compressor is fixed, which may never happen.
2017-05-28Fix intermediate files once and for all.yenatch
GNU Make defaults to deleting all intermediate files unless .SECONDARY is defined.
2017-05-28Fix the graphics rulesyenatch