diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-11 17:21:43 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-11 17:21:43 +0100 | 
| commit | c585731ab4557e2a03be9630a54295a3700103fc (patch) | |
| tree | 1baff648eb415fbc81612077dce5c2551abf12a2 /src/crepe/api/LoopTimer.cpp | |
| parent | 4bb6e89d93596c9c53798b1b9a01c588cabfe881 (diff) | |
| parent | 30c17c98e54c1534664de08ca3838c40c859d166 (diff) | |
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/text-component
Diffstat (limited to 'src/crepe/api/LoopTimer.cpp')
| -rw-r--r-- | src/crepe/api/LoopTimer.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/src/crepe/api/LoopTimer.cpp b/src/crepe/api/LoopTimer.cpp index 15a0e3a..56e48d3 100644 --- a/src/crepe/api/LoopTimer.cpp +++ b/src/crepe/api/LoopTimer.cpp @@ -1,17 +1,16 @@  #include <chrono> -#include "../facade/SDLContext.h"  #include "../util/Log.h" +#include "facade/SDLContext.h" +#include "manager/Manager.h"  #include "LoopTimer.h"  using namespace crepe; -LoopTimer::LoopTimer() { dbg_trace(); } - -LoopTimer & LoopTimer::get_instance() { -	static LoopTimer instance; -	return instance; +LoopTimer::LoopTimer(Mediator & mediator) : Manager(mediator) { +	dbg_trace(); +	mediator.timer = *this;  }  void LoopTimer::start() { @@ -67,7 +66,8 @@ void LoopTimer::enforce_frame_rate() {  			= std::chrono::duration_cast<std::chrono::milliseconds>(this->frame_target_time  																	- frame_duration);  		if (delay_time.count() > 0) { -			SDLContext::get_instance().delay(delay_time.count()); +			SDLContext & ctx = this->mediator.sdl_context; +			ctx.delay(delay_time.count());  		}  	} |