Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-11 | Labels for "sent some to mom" text. | IIMarckus | |
2015-06-09 | Merge pull request #291 from kanzure/mention-python-version | Bryan Bishop | |
Mention python2.7 requirement | |||
2015-06-09 | mention python2.7 requirement | Bryan Bishop | |
fixes #255 | |||
2015-06-08 | Fix macro changemap | Scott Norton | |
Syntax is now `changemap MapBlockDataBank, MapBlockDataPointer` | |||
2015-06-07 | Updated text pointer in line 5746. | Scott Norton | |
2015-05-18 | Merge branch 'gfx-tweaks' | yenatch | |
2015-05-18 | Merge remote-tracking branch 'kanzure/master' | yenatch | |
2015-05-18 | Enumerate the item constants. | yenatch | |
2015-05-18 | Use more constants in the event scripting engine. | yenatch | |
2015-05-18 | w-prefix the new PokegearFlags variable. | IIMarckus | |
2015-05-18 | Fix a static address. | IIMarckus | |
2015-05-14 | Give wd957 a more descriptive name. | IIMarckus | |
2015-05-14 | Label some radio stuff. | IIMarckus | |
2015-04-13 | Preemptively get rid of graphics queues while they're still not used. | yenatch | |
Nip this in the bud, so it doesn't turn out like pokered. When the time comes, use make -j16 for faster builds. | |||
2015-04-13 | Enumerate the event script command macros. | yenatch | |
This is ugly, but much better than static values. | |||
2015-04-13 | Merge remote-tracking branch 'kanzure/master' | yenatch | |
2015-04-13 | Enumerate the move effect command macros. | yenatch | |
2015-04-13 | Add a macro for enumeration. | yenatch | |
"enum" is like "const" but uses variables instead. This might not be desired. It has been moved to the top of macros.asm so that included macros can be enumerated. | |||
2015-04-13 | Use labels for pic animation setup macros. | yenatch | |
2015-03-29 | Comment alternate Time Capsule item mappings. | IIMarckus | |
2015-03-12 | Merge pull request #283 from yenatch/master | Bryan Bishop | |
no more baserom | |||
2015-03-12 | bump extras so the build actually works without baserom.gbc | yenatch | |
also fixed some problems with gfx.py: - choking on filenames in graphics conversion - faulty 'repeat' method in the compressor | |||
2015-03-11 | make compare | yenatch | |
2015-03-11 | builds both 1.0 and 1.1 | yenatch | |
2015-03-11 | baserom.gbc is no longer required to build | yenatch | |
2015-03-11 | no more incbins | yenatch | |
2015-03-11 | Unused palette maps? | yenatch | |
2015-03-11 | Get rid of baserom incbins in misc/. | yenatch | |
Battle Tower text was hiding here. | |||
2015-03-11 | Get rid of baserom incbins in main.asm. | yenatch | |
2015-03-11 | Merge pull request #282 from yenatch/master | yenatch | |
Halts and more refs/constants. | |||
2015-03-11 | Merge remote-tracking branch 'kanzure/master' | yenatch | |
2015-03-08 | Merge pull request #280 from dannye/master | Bryan Bishop | |
Fix make clean; Final music incbins | |||
2015-03-03 | Redump the overworld graphics; grouped properly this time. | yenatch | |
2015-03-03 | Temporarily delete the overworld images. | yenatch | |
The same naming scheme will be used for the replacements. It may or may not be helpful to separate these steps. | |||
2015-03-03 | Share the palette for the player and the link battle trainer class. | yenatch | |
2015-03-03 | Rename trainer palettes to match the trainer pics. | yenatch | |
2015-03-03 | Use more struct offsets and constants for monsters and moves. | yenatch | |
2015-03-03 | Fix some halts that were dumped as "db $76". | yenatch | |
2015-03-03 | Fix a static reference to a string in Pokedex code. | yenatch | |
2015-03-03 | Use a macro instead of manually subtracting $36 from pic banks. | yenatch | |
2015-03-03 | Remove an accidental copy of attack animation graphics. | yenatch | |
2015-02-15 | Final music incbins | U-Daniel-PC\Daniel | |
2015-02-14 | Fix make clean | U-Daniel-PC\Daniel | |
no more .tx files remove rgbds generated files, .map and .sym | |||
2015-02-14 | Merge pull request #279 from iimarckus/crystal11 | yenatch | |
Build both the 1.0 and 1.1 ROMs. | |||
2015-02-14 | Add the ability to build Crystal 1.1. | IIMarckus | |
2015-02-14 | Give an internal Pokédex status variable its own label. | IIMarckus | |
This new label is used in revision 1.1 of Pokémon Crystal. | |||
2015-02-13 | Merge pull request #277 from yenatch/master | Bryan Bishop | |
Start splitting code out of main. | |||
2015-02-11 | Move the map_header macro into macros/map.asm. | yenatch | |
2015-02-11 | Move second map header macros into macros/map.asm. | yenatch | |
On second thought, keep the data separate from ugly macros. | |||
2015-02-11 | Use connection macros instead of guessed values in second map headers. | yenatch | |
Some of the under-the-hood connection values are offset by an arbitrary amount. This could be because of a graphical connection editor allowing a shift in the strip destination pointer, as well as the standard alignment value. There is no visible difference, so it can be confusing when two unique sets of values can produce the same result. Reversing this invisible offset was a major sticking point back when connections were dumped, but it was straightforward this time around. Much thanks to huderlem for articulating this quirk in pokered's connection macros. |