Skip to content

Commit

Permalink
fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgtdf committed Jun 10, 2014
1 parent 61c8c93 commit 534e351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/replay_controller.cpp
Expand Up @@ -62,7 +62,7 @@ LEVEL_RESULT play_replay_level(const config& game_config,
rc.reset(new replay_controller(init_level, state_of_game, ticks, game_config, video));
} catch (end_level_exception & e){
return e.result;
} catch (end_turn_exception & e) {
} catch (end_turn_exception &) {
throw; //this should never happen? It would likely have crashed the program before, so in refactor I won't change but we should fix it later.
}
DBG_NG << "created objects... " << (SDL_GetTicks() - rc->get_ticks()) << std::endl;
Expand Down

0 comments on commit 534e351

Please sign in to comment.