Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix: Bottom of the 9th jpeg task dispatching.
  • Loading branch information
bsmiles32 committed Dec 1, 2013
1 parent 8979df7 commit 6e2d80e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.c
Expand Up @@ -226,7 +226,9 @@ static void normal_task_dispatching()
case 0x2caa6: jpeg_decode_PS(); return;

/* JPEG: found in Ogre Battle, Bottom of the 9th */
case 0x130de: jpeg_decode_OB(); return;
case 0x130de:
case 0x278b0:
jpeg_decode_OB(); return;
}

handle_unknown_task(sum);
Expand Down

0 comments on commit 6e2d80e

Please sign in to comment.