Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2018-08-25 | Merge pull request #555 from Rangi42/ldh | Rangi | |
Use real labels for HRAM instead of constants, and the ldh instruction | |||
2018-08-25 | Merge pull request #541 from igidrau/patch-2 | Rangi | |
Labeled everything | |||
2018-08-25 | Reorganize math-related HRAM union (ffb3) | Rangi | |
2018-08-25 | Changed some labels according to Rangi's comments | igidrau | |
2018-08-25 | Avoid a nested union | Rangi | |
2018-08-25 | These are signed offsets, not addresses (thanks, PikalaxALT) | Rangi | |
2018-08-25 | Remove HRAM label address comments | Rangi | |
2018-08-25 | hLabel - $ff00 -> LOW(hLabel) | Rangi | |
2018-08-25 | Use labels instead of constants for HRAM | Rangi | |
Use explicit ldh instruction to access HRAM locations, don't rely on optimizing ld | |||
2018-08-23 | Merge pull request #554 from Rangi42/master | Rangi | |
[RTM] Miscellaneous fixes | |||
2018-08-23 | asm → diff | Rangi | |
2018-08-20 | Merge branch 'master' of https://github.com/Rangi42/pokecrystal | Rangi | |
2018-08-20 | Label some Unknown map text | Rangi | |
2018-08-19 | Label some Unknown map text | Rangi | |
2018-08-19 | Update file paths in comments | Rangi | |
2018-08-19 | Merge pull request #550 from mid-kid/master | Rangi | |
Misc things | |||
2018-08-19 | Merge pull request #553 from Rangi42/master | Rangi | |
Avoid warnings from gcc for lzcomp | |||
2018-08-19 | Fix docs | mid-kid | |
2018-08-18 | Avoid warnings from gcc without having to silence them all | Rangi | |
2018-08-18 | Merge pull request #549 from aaaaaa123456789/master | Rangi | |
Update lzcomp to the newest version | |||
2018-08-17 | CheckDestinyBond -> CheckFaint | mid-kid | |
Its main function is fainting the opponent and ending the move effect. Updated the comment accordingly. | |||
2018-08-17 | Fix some StatUp-related labels | mid-kid | |
2018-08-16 | GetDamageStatsCritical -> CheckDamageStatsCritical | mid-kid | |
Clarified its usage, as the comments surrounding it were factually wrong. | |||
2018-08-16 | Better labels/constants for Move Tutor. | IIMarckus | |
2018-08-08 | There was an error in the previous commit | igidrau | |
2018-08-08 | Changed the labels accordingly to the standard style | igidrau | |
2018-08-07 | Consistency with order of constant comments | mid-kid | |
2018-08-07 | Fix more uses of EFFECTIVE | mid-kid | |
2018-08-07 | Fix INSTALL.md | mid-kid | |
2018-08-07 | Fix constants in BattleCommand_MirrorCoat | mid-kid | |
2018-08-07 | wWeeklyFlags -> wDailyFlags2 | mid-kid | |
These are by far not always checked each week, and as such shouldn't be called that. Since they're almost always used through the `bit` instruction, it's very inconvenient to just make wDailyFlags a `dw` instead. | |||
2018-08-07 | RestorePPofDepositedPokemon -> RestorePPOfDepositedPokemon | mid-kid | |
2018-08-07 | Split print_move_description and mon_menu | mid-kid | |
2018-08-04 | Update lzcomp to the latest version and fix Makefiles accordingly | aaaaaa123456789 | |
2018-07-29 | Merge pull request #548 from Rangi42/master | Rangi | |
Add meaningful aliases for wd265 | |||
2018-07-29 | Every diff line starts with +, -, or space | Rangi | |
2018-07-29 | Pokedex_PutScrollbarOAM data values | Rangi | |
2018-07-29 | No wCurMove alias for wCurSpecies | Rangi | |
2018-07-29 | Fix reviewed issues. | Rangi | |
Pokedex_PrintListing has a comment noting how it depends on wCurSpecies == wNamedObjectIndexBuffer; an assert would be more convenient, but is not possible since WRAM label addresses are not defined yet here. | |||
2018-07-29 | Make reviewed fixes; standardize on " + " | Rangi | |
2018-07-29 | wSwitchMon | Rangi | |