Skip to content

Commit 863aaf7

Browse files
committed
clang-tidy: fix errors
1 parent 61001f5 commit 863aaf7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/input/keyboard_input.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,7 @@ helper::optional<InputEvent> input::KeyboardGameInput::sdl_event_to_input_event(
149149
input::KeyboardGameInput::KeyboardGameInput(const KeyboardSettings& settings, EventDispatcher* event_dispatcher)
150150
: GameInput{ GameInputType::Keyboard },
151151
m_settings{ settings },
152-
m_event_dispatcher{ event_dispatcher },
153-
m_underlying_input{} {
152+
m_event_dispatcher{ event_dispatcher } {
154153
m_event_dispatcher->register_listener(this);
155154
}
156155

src/scenes/replay_game/replay_game.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ namespace scenes {
7777
}
7878

7979
if (all_games_finished) {
80-
//TODOO(Totto): the game input we use here for the game over is not guarantteed to work, better wul dbe to get one for this system at the tart of this scene!
80+
//TODO(Totto): the game input we use here for the game over is not guarantteed to work, better wul dbe to get one for this system at the tart of this scene!
8181
return UpdateResult{
8282
SceneUpdate::StopUpdating,
8383
Scene::RawPush{ "GameOver",

0 commit comments

Comments
 (0)