From da669db4f083194bc78358041c5d9929e103ac9f Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 24 Oct 2024 21:14:14 +0200 Subject: add more todos, shortcut keys and logging --- PathfindingContext.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'PathfindingContext.cpp') diff --git a/PathfindingContext.cpp b/PathfindingContext.cpp index df2f65b..95ac3b1 100644 --- a/PathfindingContext.cpp +++ b/PathfindingContext.cpp @@ -16,6 +16,7 @@ PathfindingContext::PathfindingContext(Museum & m) : museum(m) { void PathfindingContext::cycle_solver() { this->solver_index = (this->solver_index + 1) % this->solvers.size(); + this->update(); } Pathfinder & PathfindingContext::get_solver() { -- cgit v1.2.3