Skip to content

Commit

Permalink
crop_rec.c: added is_100D back to is_supported_mode(), it no longer c…
Browse files Browse the repository at this point in the history
…rashes

That's because of added msleep(700); delay in stuck WB fix in eariler commit,
the delay was all what needed to fix the crash on 100D on startup, also when
entering x1 mode if crop mode is active.
  • Loading branch information
bilalfakhouri committed Apr 19, 2023
1 parent 4ea4f8b commit da5c31a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/crop_rec/crop_rec.c
Expand Up @@ -341,8 +341,7 @@ static int is_supported_mode()
/* 650D / 700D / EOSM/M2 / 100D prests will only work in x5 mode, don't patch x1 */
if (PathDriveMode->zoom == 1)
{
// FIXME: 100D will crash if added, probably something related to engio_hook?
if (is_650D || is_700D || is_EOSM)
if (is_650D || is_700D || is_EOSM || is_100D)
{
return 0;
}
Expand Down

0 comments on commit da5c31a

Please sign in to comment.