aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-11-16 12:26:55 -0500
committerClyne Sullivan <clyne@bitgloo.com>2022-11-16 12:26:55 -0500
commit0c535a1526d725fbd242c5ce348a7f2252d1fd34 (patch)
treeec32e08f0e70a1058bf99204ef28fd240b426d4a /src/engine.cpp
parent034c802edd39be537a626c1961272a6137b5980e (diff)
input bindings; mouse clear dialog box
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 40f6e62..25e3cd3 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -50,7 +50,7 @@ int Engine::init(void)
systems.add<GameRunSystem>();
systems.add<InputSystem>();
- systems.add<PlayerSystem>(entities);
+ systems.add<PlayerSystem>();
systems.add<WorldSystem>();
systems.add<RenderSystem>();
systems.add<ScriptSystem>(entities, *(systems.system<WorldSystem>().get()));
@@ -180,8 +180,7 @@ void Engine::run(void)
put("default", 0, 0, "fps: "s + std::to_string(fps));
entities.each<Player, Position>(
- [this](entityx::Entity, Player &p, Position &pos){
- (void)p;
+ [this](entityx::Entity, Player&, Position &pos){
std::string pr = "pos: " + std::to_string(pos.x)
+ "," + std::to_string(pos.y);
systems.system<TextSystem>()->put("default", 0, 24, pr);