Now defaults to 800x600 screen size.
This commit is contained in:
parent
cfedd567df
commit
301c22dad7
2 changed files with 7 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
|
|
||||||
2005.Oct.3 (0.9.15)
|
2005.Oct.5 (0.9.15)
|
||||||
|
|
||||||
* uncatagorized and messy:
|
* uncatagorized and messy:
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
@ -115,6 +115,8 @@ http://www.newbreedsoftware.com/tuxpaint/
|
||||||
displays (e.g., Mac monitors)
|
displays (e.g., Mac monitors)
|
||||||
Albert Cahalan <albert@users.sf.net>
|
Albert Cahalan <albert@users.sf.net>
|
||||||
|
|
||||||
|
* Now defaults to 800x600 screen size. Welcome to the future. ;^)
|
||||||
|
|
||||||
* Switched from using 16bpp display surfaces to 32bpp, to reduce
|
* Switched from using 16bpp display surfaces to 32bpp, to reduce
|
||||||
discoloration. ("#define" options exist at the top of src/tuxpaint.c
|
discoloration. ("#define" options exist at the top of src/tuxpaint.c
|
||||||
to choose which you want.)
|
to choose which you want.)
|
||||||
|
|
|
||||||
|
|
@ -7553,8 +7553,10 @@ static void setup(int argc, char * argv[])
|
||||||
use_print_config = 0;
|
use_print_config = 0;
|
||||||
mirrorstamps = 0;
|
mirrorstamps = 0;
|
||||||
disable_stamp_controls = 0;
|
disable_stamp_controls = 0;
|
||||||
WINDOW_WIDTH = 640;
|
// WINDOW_WIDTH = 640;
|
||||||
WINDOW_HEIGHT = 480;
|
// WINDOW_HEIGHT = 480;
|
||||||
|
WINDOW_WIDTH = 800;
|
||||||
|
WINDOW_HEIGHT = 600;
|
||||||
playfile = NULL;
|
playfile = NULL;
|
||||||
recording = 0;
|
recording = 0;
|
||||||
playing = 0;
|
playing = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue