aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SDLContext.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 20:47:14 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 20:47:14 +0100
commit36f941aa1cdea5faeec20a0dc793e0538ccd6d15 (patch)
treef944b01ed0bb0d189e115f375cda8e3e7df5c17e /src/crepe/facade/SDLContext.cpp
parent970159235e5f1a1dcb6a7f725e782374ced54d3b (diff)
implemented feedback
Diffstat (limited to 'src/crepe/facade/SDLContext.cpp')
-rw-r--r--src/crepe/facade/SDLContext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp
index ea3b71c..9a122f5 100644
--- a/src/crepe/facade/SDLContext.cpp
+++ b/src/crepe/facade/SDLContext.cpp
@@ -208,14 +208,14 @@ void SDLContext::draw_text(const RenderText & data) {
};
SDL_Surface * tmp_font_surface
= TTF_RenderText_Solid(font.get_font(), text.text.c_str(), color);
- if (!tmp_font_surface) {
+ if (tmp_font_surface == NULL) {
throw runtime_error(format("draw_text: font surface error: {}", SDL_GetError()));
}
font_surface = {tmp_font_surface, [](SDL_Surface * surface) { SDL_FreeSurface(surface); }};
SDL_Texture * tmp_font_texture
= SDL_CreateTextureFromSurface(this->game_renderer.get(), font_surface.get());
- if (!tmp_font_texture) {
+ if (tmp_font_texture == NULL) {
throw runtime_error(format("draw_text: font texture error: {}", SDL_GetError()));
}
font_texture