1
0
Fork 0
forked from len0rd/rockbox

Plugin parameters should be const.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Steve Bavin 2008-05-13 09:57:56 +00:00
parent a94e40d515
commit 6526577818
159 changed files with 363 additions and 371 deletions

View file

@ -595,7 +595,7 @@ unsigned char fire_sprite[FIRE_HEIGHT] = {
#define CYCLETIME 40
static struct plugin_api* rb;
static const struct plugin_api* rb;
/* Physical x is at PLAYFIELD_X + LIVES_X + x * ALIEN_SPEED
* Physical y is at y * ALIEN_HEIGHT
@ -1785,7 +1785,7 @@ void game_loop(void)
/* this is the plugin entry point */
enum plugin_status plugin_start(struct plugin_api* api, UNUSED void* parameter)
enum plugin_status plugin_start(const struct plugin_api* api, UNUSED const void* parameter)
{
rb = api;