mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-22 03:22:48 -05:00
pacbox: fix red and enable AI on all targets
Change-Id: I4275e4ec374f3b5a6839890e4a2aa0f577f56522
This commit is contained in:
parent
b3295f0ed6
commit
8bafa1bc9b
2 changed files with 5 additions and 1 deletions
|
|
@ -39,6 +39,9 @@
|
|||
/*Allows split screen jump and makes pacman invincible if you start at 18 credits (for testing purposes)*/
|
||||
//#define CHEATS 1
|
||||
|
||||
/* Enable AI on all targets */
|
||||
#define AI 1
|
||||
|
||||
struct pacman_settings {
|
||||
int difficulty;
|
||||
int numlives;
|
||||
|
|
@ -632,7 +635,9 @@ static int gameProc( void )
|
|||
long end_time;
|
||||
int frame_counter = 0;
|
||||
int yield_counter = 0;
|
||||
#ifdef AI
|
||||
unsigned char turn = 250;
|
||||
#endif
|
||||
|
||||
if (settings.sound)
|
||||
start_sound();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue