summaryrefslogtreecommitdiff
path: root/apps/plugins/reversi/reversi-strategy.c
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2007-07-01 20:48:51 +0000
committerAntoine Cellerier <dionoea@videolan.org>2007-07-01 20:48:51 +0000
commitcd82964e5d42b0252b8f14f15fc80709def37984 (patch)
treec9ef436d40b69f70b3d8d4c9967d8fdc812f3277 /apps/plugins/reversi/reversi-strategy.c
parent58f97f517a2d5918b8a18617130c2fce09af7683 (diff)
Make sure that reversi doesn't enter an infinite loop when using 1 or 2 AIs.
+ some changes that will be needed for more advanced AIs (which aren't ready to commit yet) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13758 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/reversi/reversi-strategy.c')
-rw-r--r--apps/plugins/reversi/reversi-strategy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/reversi/reversi-strategy.c b/apps/plugins/reversi/reversi-strategy.c
index 9adcbb661f..3f8ef45eaa 100644
--- a/apps/plugins/reversi/reversi-strategy.c
+++ b/apps/plugins/reversi/reversi-strategy.c
@@ -23,5 +23,6 @@
/* Strategy that requires interaction with the user */
const game_strategy_t strategy_human = {
false,
+ NULL,
NULL
};