diff options
| author | Dusan Durech <dusan.d@Centrum.sk> | 2009-09-04 17:22:51 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan.d@Centrum.sk> | 2009-09-04 17:22:51 +0200 |
| commit | ef7d34b831f025c1588fa1646354f1942b368397 (patch) | |
| tree | 0762a7975205f1f2d205a15aa9cba809ac62c908 /src/screen/world.c | |
| parent | 16fc4253e795e4812b8680a61525e8d8fd0693d1 (diff) | |
fix few stupid bugs + fix one memory leak
Diffstat (limited to 'src/screen/world.c')
| -rw-r--r-- | src/screen/world.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen/world.c b/src/screen/world.c index 2afd8d4..f368c41 100644 --- a/src/screen/world.c +++ b/src/screen/world.c @@ -299,8 +299,8 @@ void world_set_control_tux(tux_t *tux, int control_type) key_table_get_key(KEY_TUX_LEFT_MOVE_RIGHT), key_table_get_key(KEY_TUX_LEFT_MOVE_LEFT), key_table_get_key(KEY_TUX_LEFT_MOVE_DOWN), - key_table_get_key(KEY_TUX_RIGHT_SHOOT), - key_table_get_key(KEY_TUX_RIGHT_SWITCH_WEAPON) + key_table_get_key(KEY_TUX_LEFT_SHOOT), + key_table_get_key(KEY_TUX_LEFT_SWITCH_WEAPON) ); break; |