From 1198617dbb0c15a9f71ffea6af2307c35d1b16a9 Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Tue, 14 Oct 2003 06:23:45 +0000 Subject: [PATCH] Fixed do_prompt() bug in 800x600 mode. (TOYAMA Shin-ichi) --- src/tuxpaint.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index d43447fe3..8b93786f5 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -7,12 +7,12 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ - June 14, 2002 - September 28, 2003 + June 14, 2002 - October 13, 2003 */ #define VER_VERSION "0.9.13" -#define VER_DATE "2003.09.28" +#define VER_DATE "2003.10.13" #define DEBUG @@ -8235,8 +8235,8 @@ int do_prompt(char * text, char * btn_yes, char * btn_no) SDL_BlitSurface(img_no, NULL, screen, &dest); wordwrap_text(font, btn_no, black, - 166 + PROMPTOFFSETX + 48 + 4, 235 + PROMPTOFFSETY, 475, - 0, 0, 1); + 166 + PROMPTOFFSETX + 48 + 4, 235 + PROMPTOFFSETY, + 475 + PROMPTOFFSETX, 0, 0, 1); }