Skip to content

Commit

Permalink
Remove warning when renderer is not OpenGL
Browse files Browse the repository at this point in the history
Trilinear filtering can currently only be enabled for OpenGL renderers.

Do not print a warning if the renderer is not OpenGL, as it can confuses
users, while nothing is wrong.
  • Loading branch information
rom1v committed May 23, 2020
1 parent f5aeecb commit fae3f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ screen_init_rendering(struct screen *screen, const char *window_title,
LOGI("Trilinear filtering disabled");
}
} else {
LOGW("Trilinear filtering disabled (not an OpenGL renderer)");
LOGD("Trilinear filtering disabled (not an OpenGL renderer)");
}

SDL_Surface *icon = read_xpm(icon_xpm);
Expand Down

0 comments on commit fae3f9e

Please sign in to comment.