34 |
|
#include "adb.h" |
35 |
|
#include "prefs.h" |
36 |
|
#include "user_strings.h" |
37 |
< |
#include "version.h" |
37 |
> |
#include "about_window.h" |
38 |
|
#include "video.h" |
39 |
|
|
40 |
|
#include "m68k.h" |
619 |
|
} |
620 |
|
|
621 |
|
case MSG_ABOUT_REQUESTED: { |
622 |
< |
char str[256]; |
623 |
< |
sprintf(str, GetString(STR_ABOUT_TEXT1), VERSION_MAJOR, VERSION_MINOR); |
624 |
< |
strcat(str, " "); |
625 |
< |
strcat(str, GetString(STR_ABOUT_TEXT2)); |
626 |
< |
BAlert *about = new BAlert(GetString(STR_WINDOW_TITLE), str, GetString(STR_OK_BUTTON)); |
627 |
< |
about->Go(); |
622 |
> |
ShowAboutWindow(); |
623 |
|
break; |
624 |
|
} |
625 |
|
|