mirror of https://github.com/snes9xgit/snes9x.git
Merge pull request #7 from bl0ckeduser/master
Fix mising header file; fix Windows "about" dialog
This commit is contained in:
commit
3086eb6901
|
@ -182,6 +182,7 @@
|
|||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "snes9x.h"
|
||||
#include "memmap.h"
|
||||
|
|
|
@ -96,7 +96,7 @@ CAPTION "APP - About Dialog"
|
|||
FONT 8, "MS Sans Serif", 0, 0, 0x1
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "OK",IDOK,90,160,50,14
|
||||
EDITTEXT IDC_DISCLAIMER,7,7,218,148,ES_MULTILINE | ES_NOHIDESEL | ES_READONLY,WS_EX_STATICEDGE
|
||||
EDITTEXT IDC_DISCLAIMER,7,7,218,148,ES_MULTILINE | ES_NOHIDESEL | WS_VSCROLL | ES_READONLY,WS_EX_STATICEDGE
|
||||
END
|
||||
|
||||
IDD_EMU_SETTINGS DIALOGEX 0, 0, 319, 154
|
||||
|
|
Loading…
Reference in New Issue