diff --git a/src/main.c b/src/main.c index 6bc1a871..266eca85 100644 --- a/src/main.c +++ b/src/main.c @@ -450,7 +450,7 @@ int main(int argc, char **argv) { int w, h; SDL_GetWindowSize(window, &w, &h); - // TODO: update the viewport and the resolution only on actual window change + // TODO(#19): update the viewport and the resolution only on actual window change glViewport(0, 0, w, h); glUniform2f(resolution_uniform, (float) w, (float) h); }