From 779cf58ae66fe9912ec90899f5cec7f26527cb36 Mon Sep 17 00:00:00 2001 From: Bruno Dilly Date: Mon, 15 Oct 2012 21:54:56 +0000 Subject: [PATCH] efbb: fix world geometry setter SVN revision: 78017 --- src/bin/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/main.c b/src/bin/main.c index 4473233..2d694ee 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -1009,7 +1009,8 @@ _level_load(Game *game) /* World */ game->cur_world = ephysics_world_new(); ephysics_world_simulation_set(game->cur_world, 1/60., 4); - ephysics_world_render_geometry_set(game->cur_world, 0, 0, WIDTH, HEIGHT); + ephysics_world_render_geometry_set(game->cur_world, 0, 0, -5, + WIDTH, HEIGHT, 10); ephysics_world_bodies_outside_bottom_autodel_set(game->cur_world, EINA_TRUE); ephysics_world_event_callback_add(game->cur_world, EPHYSICS_CALLBACK_WORLD_STOPPED,