-
Notifications
You must be signed in to change notification settings - Fork 113
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
start cleaning up blackout.c #269
Conversation
ready for review |
src/blackout.c
Outdated
static BOOL Task_ShowPrintedBlackoutMessage(TaskManager *taskManager) { | ||
BlackoutScreenEnvironment *env = TaskManager_GetEnvironment(taskManager); | ||
switch (env->state) { | ||
case 0: |
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.
State enum consts if known
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.
not fully known, I am however debating whether this is the correct name for the func, as it does seem to mostly be palette fades
src/blackout.c
Outdated
u16 deathSpawn; | ||
|
||
switch (*state) { | ||
case 0: |
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.
State consts if known
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.
not fully known, some are unclear
Address conflicting files please |
@@ -0,0 +1,243 @@ | |||
#include "scrcmd.h" |
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.
Reviewing this file is made difficult by the fact that it was both renamed and substantially modified from field_black_out.c
.
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.
that is somewhat the point
WIP