--- previous/src/gui-sdl/dlgAbout.c 2018/04/24 19:25:10 1.1 +++ previous/src/gui-sdl/dlgAbout.c 2018/04/24 19:34:37 1.1.1.3 @@ -1,12 +1,12 @@ /* - Hatari - dlgAbout.c + Previous - dlgAbout.c This file is distributed under the GNU Public License, version 2 or at your option any later version. Read the file gpl.txt for details. Show information about the program and its license. */ -const char DlgAbout_fileid[] = "Hatari dlgAbout.c : " __DATE__ " " __TIME__; +const char DlgAbout_fileid[] = "Previous dlgAbout.c : " __DATE__ " " __TIME__; #include "main.h" #include "dialog.h" @@ -16,24 +16,21 @@ const char DlgAbout_fileid[] = "Hatari d /* The "About"-dialog: */ static SGOBJ aboutdlg[] = { - { SGBOX, 0, 0, 0,0, 40,25, NULL }, - { SGTEXT, 0, 0, 13,1, 12,1, PROG_NAME }, - { SGTEXT, 0, 0, 13,2, 12,1, "=============" }, - { SGTEXT, 0, 0, 1,4, 38,1, "Written by the Previous Team." }, - { SGTEXT, 0, 0, 1,5, 38,1, "Derived from hatari by Thomas Huth." }, - { SGTEXT, 0, 0, 2,7, 34,1, "Please see the docs for more info!" }, - { SGTEXT, 0, 0, 1,9, 38,1, "This program is free software; you can" }, - { SGTEXT, 0, 0, 1,10, 38,1, "redistribute it and/or modify it under" }, - { SGTEXT, 0, 0, 1,11, 38,1, "the terms of the GNU General Public" }, - { SGTEXT, 0, 0, 1,12, 38,1, "License as published by the Free Soft-" }, - { SGTEXT, 0, 0, 1,13, 38,1, "ware Foundation; either version 2 of" }, - { SGTEXT, 0, 0, 1,14, 38,1, "the License, or (at your option) any" }, - { SGTEXT, 0, 0, 1,15, 38,1, "later version." }, - { SGTEXT, 0, 0, 1,17, 38,1, "This program is distributed in the" }, - { SGTEXT, 0, 0, 1,18, 38,1, "hope that it will be useful, but" }, - { SGTEXT, 0, 0, 1,19, 38,1, "WITHOUT ANY WARRANTY. See the GNU Ge-" }, - { SGTEXT, 0, 0, 1,20, 38,1, "neral Public License for more details." }, - { SGBUTTON, SG_DEFAULT, 0, 16,23, 8,1, "OK" }, + { SGBOX, 0, 0, 0,0, 56,22, NULL }, + { SGTEXT, 0, 0, 21,1, 12,1, PROG_NAME }, + { SGTEXT, 0, 0, 21,2, 12,1, "==============" }, + { SGTEXT, 0, 0, 2,4, 52,1, "Previous is a NeXT computer system (black hardware) " }, + { SGTEXT, 0, 0, 2,5, 52,1, "emulator. It was written by Andreas Grabher, " }, + { SGTEXT, 0, 0, 2,6, 52,1, "Simon Schubiger and Gilles Fetis with the help of " }, + { SGTEXT, 0, 0, 2,7, 52,1, "the community at the NeXT International Forums " }, + { SGTEXT, 0, 0, 2,8, 52,1, "(http://www.nextcomputers.org/forums). Previous is " }, + { SGTEXT, 0, 0, 2,9, 52,1, "the work of many. " }, + { SGTEXT, 0, 0, 2,11, 52,1, "This program is free software. You can redistribute " }, + { SGTEXT, 0, 0, 2,12, 52,1, "it and/or modify it. Please check the License and " }, + { SGTEXT, 0, 0, 2,13, 52,1, "Copyright in the individual source files. " }, + { SGTEXT, 0, 0, 2,15, 52,1, "This program is distributed in the hope that it will" }, + { SGTEXT, 0, 0, 2,16, 52,1, "be useful, but WITHOUT ANY WARRANTY. " }, + { SGBUTTON, SG_DEFAULT, 0, 24,19, 8,1, "OK" }, { -1, 0, 0, 0,0, 0,0, NULL } };