-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
Finishing up journal documentation #320
Conversation
Window *window1; | ||
Window *window2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to something more meaningful that expresses how the two windows differ (or leave them as v0
and v1
for now if you can't tell).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This generally looks good; just a few bookkeeping things ahead of merge. Thanks for this effort!
Text_AddPrinterWithParamsAndColor(window, FONT_SYSTEM, journalManager->strbuf, 0, ((16 * 4 + 16) + 16), TEXT_SPEED_NO_TRANSFER, TEXT_COLOR(1, 2, 0), NULL); | ||
Text_AddPrinterWithParamsAndColor(window, FONT_SYSTEM, journalManager->strbuf, 0, TRAINER_EVENT_Y_OFFSET, TEXT_SPEED_NO_TRANSFER, TEXT_COLOR(1, 2, 0), NULL); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏
Probably my last PR about the journal. There were just some final things I wanted to improve, like finally giving
UnkStruct_ov81_021D1610
an actual name (JournalManager
) and giving most functions, params and variables injournal_controller.c
an actual name as well. Some function names injournal_controller.c
could potentially be improved, I wasn't always exactly sure about what graphics related stuff was happening, so see the names for these more as suggestions.