aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 21:51:30 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 21:51:30 +0100
commit8e72968e294cbc4ac6e9ff09bd94cde1775d735b (patch)
tree1790d90772a1cd37feff180a5dacfae33c305a68 /src/crepe/facade
parent3a5a61399cea453c5fc25e3b999ef9a751fd4448 (diff)
nitpick #34
Diffstat (limited to 'src/crepe/facade')
-rw-r--r--src/crepe/facade/SDLContext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp
index b8b2bda..00523a6 100644
--- a/src/crepe/facade/SDLContext.cpp
+++ b/src/crepe/facade/SDLContext.cpp
@@ -47,7 +47,8 @@ SDLContext::SDLContext() {
SDL_Renderer * tmp_renderer
= SDL_CreateRenderer(this->game_window.get(), -1, SDL_RENDERER_ACCELERATED);
if (!tmp_renderer) {
- throw runtime_error(format("SDLContext: SDL_CreateRenderer error: {}", SDL_GetError()));
+ throw runtime_error(
+ format("SDLContext: SDL_CreateRenderer error: {}", SDL_GetError()));
}
this->game_renderer