From 679442fa4d5e7bd4f411119405555351f51a4038 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 21 Dec 2008 17:55:02 +0000 Subject: [PATCH] Fixed crash in testdraw2, added more points --- test/testdraw2.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/testdraw2.c b/test/testdraw2.c index 75cb70925..037c65d06 100644 --- a/test/testdraw2.c +++ b/test/testdraw2.c @@ -29,7 +29,7 @@ DrawPoints(SDL_WindowID window) SDL_GetWindowSize(window, &window_w, &window_h); SDL_SetRenderDrawBlendMode(blendMode); - for (i = 0; i < num_objects; ++i) { + for (i = 0; i < num_objects * 4; ++i) { /* Cycle the color and alpha, if desired */ if (cycle_color) { current_color += cycle_direction; @@ -102,10 +102,10 @@ DrawLines(SDL_WindowID window) (Uint8) current_color, (Uint8) current_alpha); if (i == 0) { - SDL_RenderLine(0, 0, window_w, window_h); - SDL_RenderLine(0, window_h, window_w, 0); - SDL_RenderLine(0, window_h / 2, window_w, window_h / 2); - SDL_RenderLine(window_w / 2, 0, window_w / 2, window_h); + SDL_RenderLine(0, 0, window_w - 1, window_h - 1); + SDL_RenderLine(0, window_h - 1, window_w - 1, 0); + SDL_RenderLine(0, window_h / 2, window_w - 1, window_h / 2); + SDL_RenderLine(window_w / 2, 0, window_w / 2, window_h - 1); } else { x1 = rand() % window_w; x2 = rand() % window_w; @@ -128,7 +128,7 @@ DrawRects(SDL_WindowID window) SDL_GetWindowSize(window, &window_w, &window_h); SDL_SetRenderDrawBlendMode(blendMode); - for (i = 0; i < num_objects/4; ++i) { + for (i = 0; i < num_objects / 4; ++i) { /* Cycle the color and alpha, if desired */ if (cycle_color) { current_color += cycle_direction;