From a25715a29b0587ae6795eef63a575172e2cb971d Mon Sep 17 00:00:00 2001 From: Ľubomír Remák Date: Sat, 4 Aug 2018 16:57:41 +0200 Subject: MUTATIONOFJB: Fix code formatting issues (with astyle). --- engines/mutationofjb/mutationofjb.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'engines/mutationofjb/mutationofjb.cpp') diff --git a/engines/mutationofjb/mutationofjb.cpp b/engines/mutationofjb/mutationofjb.cpp index cdaa03788b..23202555e6 100644 --- a/engines/mutationofjb/mutationofjb.cpp +++ b/engines/mutationofjb/mutationofjb.cpp @@ -40,11 +40,11 @@ namespace MutationOfJB { MutationOfJBEngine::MutationOfJBEngine(OSystem *syst) -: Engine(syst), - _console(nullptr), - _screen(nullptr), - _mapObjectId(0), - _cursorState(CURSOR_IDLE) { + : Engine(syst), + _console(nullptr), + _screen(nullptr), + _mapObjectId(0), + _cursorState(CURSOR_IDLE) { debug("MutationOfJBEngine::MutationOfJBEngine"); } @@ -174,7 +174,7 @@ void MutationOfJBEngine::handleMapScene(const Common::Event &event) { const int16 y = event.mouse.y; int index = 0; - if (Bitmap *const bitmap = scene->findBitmap(x, y, &index)) { + if (Bitmap *const bitmap = scene->findBitmap(x, y, &index)) { Static *const stat = scene->getStatic(index); if (stat && stat->_active == 1) { _game->startActionSection(ActionInfo::Walk, stat->_name); @@ -188,7 +188,7 @@ void MutationOfJBEngine::handleMapScene(const Common::Event &event) { int index = 0; bool found = false; - if (Bitmap *const bitmap = scene->findBitmap(x, y, &index)) { + if (Bitmap *const bitmap = scene->findBitmap(x, y, &index)) { Static *const stat = scene->getStatic(index); if (stat && stat->_active == 1) { Object *const object = scene->getObject(index); -- cgit v1.2.3