Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-11 | Rename CheckTrainerBattle | mid-kid | |
Renamed to be more in line with our current coding standards. Hopefully this is slightly more readable. | |||
2018-10-11 | Stop using __enum__ + 3 | mid-kid | |
Abuse __enumdir__ instead, for better readability. | |||
2018-10-11 | Add more savegame stuff to gitignore | mid-kid | |
2018-10-03 | This event isn't Crystal-exclusive. | IIMarckus | |
2018-09-23 | Merge pull request #566 from luckytyphlosion/master | luckytyphlosion | |
Refactor .gitattributes and .gitignore | |||
2018-09-23 | Lowercase *.md | luckytyphlosion | |
2018-09-23 | Add make tidy and remove bitmask.asm and frames.asm in make clean | luckytyphlosion | |
2018-09-23 | Merge pull request #567 from Rangi42/master | Rangi | |
Identifying more labels and constants | |||
2018-09-22 | PREDEFPAL_4D -> PREDEFPAL_GAMEFREAK_LOGO_OB | Rangi | |
2018-09-22 | Merge pull request #565 from Rangi42/master | Rangi | |
Identify some Spaceworld beta content | |||
2018-09-22 | Naming screen constants | Rangi | |
2018-09-20 | Fix toc.py line endings (for travis-ci) | luckytyphlosion | |
2018-09-20 | Remove *.pal from gitignore, remove more build objects with make clean. | luckytyphlosion | |
2018-09-19 | Refactor .gitattributes and .gitignore | luckytyphlosion | |
2018-09-16 | Merge branch 'master' of https://github.com/pret/pokecrystal | Rangi | |
2018-09-16 | Identify some Spaceworld beta content | Rangi | |
2018-09-16 | Merge pull request #564 from mid-kid/master | Rangi | |
abloobloobloobloobloo | |||
2018-09-16 | This isn't actually PAL_BG_ROOF | mid-kid | |
My bad. | |||
2018-09-16 | wMonStatusFlags -> wDebugFlags | mid-kid | |
2018-09-16 | Fix use of in LoadMansionPalette | mid-kid | |
2018-09-09 | Merge pull request #563 from Rangi42/master | Rangi | |
Graphics-related edits | |||
2018-09-09 | Use existing bigdw macro | Rangi | |
2018-09-09 | Use 0/1/2/3 for palettes, and rgbds opt feature for battle transition graphic | Rangi | |
2018-09-09 | Merge pull request #562 from Rangi42/master | Rangi | |
Curr → Cur | |||
2018-09-09 | wCursorCurTile -> wCursorCurrentTile | Rangi | |
2018-09-09 | wPreviousLandmark → wPrevLandmark | Rangi | |
2018-09-09 | Remove redundant comments | Rangi | |
2018-09-09 | hMultiplicand is four bytes internally, but the high byte is always 0 since ↵ | Rangi | |
allowing four-byte multiplicands could overflow hProduct. | |||
2018-09-09 | Curr -> Cur | Rangi | |
2018-09-08 | Merge pull request #561 from Rangi42/master | Rangi | |
Revise documentation | |||
2018-09-08 | Empty rules are unnecessary (error messages are fine without them) | Rangi | |
2018-09-01 | Don't repeat the pokecrystal instructions | Rangi | |
2018-09-01 | Clarify about rgbds 0.3.7 compatibility | Rangi | |
2018-09-01 | Revise documentation | Rangi | |
All the INSTALL.md sections have similar structure | |||
2018-09-01 | Merge pull request #560 from Rangi42/master | Rangi | |
Fix #537: Palettes generated from PNGs use .gbcpal directly. | |||
2018-09-01 | Merge pull request #559 from mid-kid/master | Rangi | |
Clarify INSTALL.md | |||
2018-09-01 | Consistently use "rgbgfx += -h" | Rangi | |
2018-09-01 | normal.gbcpal → front.gbcpal | Rangi | |
Eliminate redundant Makefile rules Keep Makefile's Pokemon-specific hack rules next to the misc file-specific graphics rules | |||
2018-09-02 | Update documentation | mid-kid | |
Added windows 10 (WSL) installation instructions and expanded linux instructions. Clarified things in FAQ.md. | |||
2018-08-31 | Fix #537: Palettes generated from PNGs use .gbcpal directly. | Rangi | |
This avoids overwriting a .pal file from a .png with the same name. It also prevents people from trying to edit generated .pal files. | |||
2018-08-26 | Merge pull request #557 from Rangi42/master | Rangi | |
Miscellaneous changes | |||
2018-08-26 | ; fallthrough | Rangi | |
2018-08-26 | HRAM style | Rangi | |
2018-08-26 | spaces->tab, and remove redundant comment | Rangi | |
2018-08-26 | Nested union for the Multiply+Divide inputs+results | Rangi | |
2018-08-26 | hQuotient is a four-byte buffer (fixes #558) | Rangi | |
2018-08-26 | Explain wCreditsBlankFrame2bpp | Rangi | |
2018-08-26 | wCreditsFaux2bpp -> wCreditsBlankFrame2bpp, with the right buffer size | Rangi | |
Remove some unused WRAM labels | |||
2018-08-25 | _Divide results go in hQuotient and hRemainder, not in hDividend and hDivisor | Rangi | |
Note that the result quotient is four bytes, but hQuotient is a three-byte buffer. This is because no Divide caller ever needed a four-byte quotient, so the buffer didn't include the high byte. | |||
2018-08-25 | Use rgbasm's GameBoy graphics literal for initializing wCreditsFaux2bpp | Rangi | |
In the 2BPP format, two bytes %ABCDEFGH %abcdefgh define eight pixels %Aa %Bb %Cc %Dd %Ee %Ff %Gg %Hh. Four valid colors: %00 = 0 = white, %01 = 1 = dark, %10 = 2 = light, %11 = 3 = black. Thus `22222222 = pixels %10 %10 %10 %10 %10 %10 %10 %10 = bytes %11111111 %00000000 = $ff00. |