diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-06-16 22:16:01 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-16 22:16:01 +0000 |
| commit | ce60003ebb682e06335796ddbeb2754c11b30192 (patch) | |
| tree | d861d6b3137de8392f8af9a19911a14f2967765b /apps | |
| parent | 38567bab2b391370494f52deeadef0c7c6269108 (diff) | |
| download | rockbox-ce60003ebb682e06335796ddbeb2754c11b30192.zip rockbox-ce60003ebb682e06335796ddbeb2754c11b30192.tar.gz rockbox-ce60003ebb682e06335796ddbeb2754c11b30192.tar.bz2 rockbox-ce60003ebb682e06335796ddbeb2754c11b30192.tar.xz | |
code after variables
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4764 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/pong.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c index 9c76ef2..18fdcad 100644 --- a/apps/plugins/pong.c +++ b/apps/plugins/pong.c @@ -270,8 +270,6 @@ void showscore(struct pong *p) /* this is the plugin entry point */ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { - TEST_PLUGIN_API(api); - struct pong pong; bool game = true; @@ -294,6 +292,8 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) this to avoid the compiler warning about it */ (void)parameter; + TEST_PLUGIN_API(api); + rb = api; /* use the "standard" rb pointer */ /* Clear screen */ |