summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox/pacbox.c
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2008-05-13 09:57:56 +0000
committerSteve Bavin <pondlife@pondlife.me>2008-05-13 09:57:56 +0000
commit652657781805d9cc10d744a49fb23eb17019fbbf (patch)
tree2d1a6ae597a17531f726b57fd9f8cbaa2a46a07f /apps/plugins/pacbox/pacbox.c
parenta94e40d5153ab698fa8a1b6b57d91fcb6acc905e (diff)
downloadrockbox-652657781805d9cc10d744a49fb23eb17019fbbf.tar.gz
rockbox-652657781805d9cc10d744a49fb23eb17019fbbf.zip
Plugin parameters should be const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pacbox/pacbox.c')
-rw-r--r--apps/plugins/pacbox/pacbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index fad27358d2..1eb040e24d 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -32,7 +32,7 @@
32PLUGIN_HEADER 32PLUGIN_HEADER
33PLUGIN_IRAM_DECLARE 33PLUGIN_IRAM_DECLARE
34 34
35struct plugin_api* rb; 35const struct plugin_api* rb;
36 36
37struct pacman_settings { 37struct pacman_settings {
38 int difficulty; 38 int difficulty;
@@ -361,7 +361,7 @@ static int gameProc( void )
361 return 0; 361 return 0;
362} 362}
363 363
364enum plugin_status plugin_start(struct plugin_api* api, void* parameter) 364enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
365{ 365{
366 (void)parameter; 366 (void)parameter;
367 367