mirror of https://github.com/PCSX2/pcsx2.git
SPU2: remove logo from config
This commit is contained in:
parent
faae323d9d
commit
c36c26800b
|
@ -141,6 +141,7 @@ void ReadSettings()
|
||||||
Config_WaveOut.NumBuffers = CfgReadInt(L"WAVEOUT", L"Buffer_Count", 4);
|
Config_WaveOut.NumBuffers = CfgReadInt(L"WAVEOUT", L"Buffer_Count", 4);
|
||||||
|
|
||||||
DSoundOut->ReadSettings();
|
DSoundOut->ReadSettings();
|
||||||
|
PortaudioOut->ReadSettings();
|
||||||
|
|
||||||
SoundtouchCfg::ReadSettings();
|
SoundtouchCfg::ReadSettings();
|
||||||
DebugConfig::ReadSettings();
|
DebugConfig::ReadSettings();
|
||||||
|
@ -195,6 +196,7 @@ void WriteSettings()
|
||||||
CfgWriteInt(L"DSP PLUGIN", L"ModuleNum", dspPluginModule);
|
CfgWriteInt(L"DSP PLUGIN", L"ModuleNum", dspPluginModule);
|
||||||
CfgWriteBool(L"DSP PLUGIN", L"Enabled", dspPluginEnabled);
|
CfgWriteBool(L"DSP PLUGIN", L"Enabled", dspPluginEnabled);
|
||||||
|
|
||||||
|
PortaudioOut->WriteSettings();
|
||||||
DSoundOut->WriteSettings();
|
DSoundOut->WriteSettings();
|
||||||
SoundtouchCfg::WriteSettings();
|
SoundtouchCfg::WriteSettings();
|
||||||
DebugConfig::WriteSettings();
|
DebugConfig::WriteSettings();
|
||||||
|
@ -204,11 +206,13 @@ void CheckOutputModule(HWND window)
|
||||||
{
|
{
|
||||||
OutputModule = SendMessage(GetDlgItem(window, IDC_OUTPUT), CB_GETCURSEL, 0, 0);
|
OutputModule = SendMessage(GetDlgItem(window, IDC_OUTPUT), CB_GETCURSEL, 0, 0);
|
||||||
const bool IsConfigurable =
|
const bool IsConfigurable =
|
||||||
|
mods[OutputModule] == PortaudioOut ||
|
||||||
mods[OutputModule] == WaveOut ||
|
mods[OutputModule] == WaveOut ||
|
||||||
mods[OutputModule] == DSoundOut;
|
mods[OutputModule] == DSoundOut;
|
||||||
|
|
||||||
const bool AudioExpansion =
|
const bool AudioExpansion =
|
||||||
mods[OutputModule] == XAudio2Out;
|
mods[OutputModule] == XAudio2Out ||
|
||||||
|
mods[OutputModule] == PortaudioOut;
|
||||||
|
|
||||||
EnableWindow(GetDlgItem(window, IDC_OUTCONF), IsConfigurable);
|
EnableWindow(GetDlgItem(window, IDC_OUTCONF), IsConfigurable);
|
||||||
EnableWindow(GetDlgItem(window, IDC_SPEAKERS), AudioExpansion);
|
EnableWindow(GetDlgItem(window, IDC_SPEAKERS), AudioExpansion);
|
||||||
|
|
|
@ -24,7 +24,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
//
|
//
|
||||||
|
|
||||||
IDD_CONFIG DIALOGEX 0, 0, 310, 260
|
IDD_CONFIG DIALOGEX 0, 0, 310, 260
|
||||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
CAPTION "SPU2 Settings"
|
CAPTION "SPU2 Settings"
|
||||||
FONT 8, "MS Shell Dlg", 400, 0, 0x0
|
FONT 8, "MS Shell Dlg", 400, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
|
@ -40,7 +40,6 @@ BEGIN
|
||||||
GROUPBOX "",IDC_STATIC,6,123,145,45
|
GROUPBOX "",IDC_STATIC,6,123,145,45
|
||||||
CHECKBOX "Enable Debug Options",IDC_DEBUG_ENABLE,14,135,118,10,NOT WS_TABSTOP
|
CHECKBOX "Enable Debug Options",IDC_DEBUG_ENABLE,14,135,118,10,NOT WS_TABSTOP
|
||||||
PUSHBUTTON "Configure...",IDC_OPEN_CONFIG_DEBUG,14,147,52,13
|
PUSHBUTTON "Configure...",IDC_OPEN_CONFIG_DEBUG,14,147,52,13
|
||||||
CONTROL 116,IDC_STATIC,"Static",SS_BITMAP | SS_REALSIZECONTROL,6,175,145,55,WS_EX_CLIENTEDGE
|
|
||||||
GROUPBOX "Output Settings",IDC_STATIC,157,5,145,225
|
GROUPBOX "Output Settings",IDC_STATIC,157,5,145,225
|
||||||
LTEXT "Module:",IDC_STATIC,163,16,50,9,NOT WS_GROUP
|
LTEXT "Module:",IDC_STATIC,163,16,50,9,NOT WS_GROUP
|
||||||
COMBOBOX IDC_OUTPUT,165,26,129,120,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_OUTPUT,165,26,129,120,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
|
||||||
|
@ -103,7 +102,7 @@ BEGIN
|
||||||
END
|
END
|
||||||
|
|
||||||
IDD_CONFIG_SOUNDTOUCH DIALOGEX 0, 0, 206, 223
|
IDD_CONFIG_SOUNDTOUCH DIALOGEX 0, 0, 206, 223
|
||||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
CAPTION "Soundtouch Advanced Configuration - SPU2"
|
CAPTION "Soundtouch Advanced Configuration - SPU2"
|
||||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||||
BEGIN
|
BEGIN
|
||||||
|
@ -214,45 +213,6 @@ BEGIN
|
||||||
END
|
END
|
||||||
#endif // APSTUDIO_INVOKED
|
#endif // APSTUDIO_INVOKED
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// Version
|
|
||||||
//
|
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
|
||||||
FILEVERSION 2,0,0,4851
|
|
||||||
PRODUCTVERSION 2,0,0,4851
|
|
||||||
FILEFLAGSMASK 0x17L
|
|
||||||
#ifdef _DEBUG
|
|
||||||
FILEFLAGS 0x1L
|
|
||||||
#else
|
|
||||||
FILEFLAGS 0x0L
|
|
||||||
#endif
|
|
||||||
FILEOS 0x4L
|
|
||||||
FILETYPE 0x2L
|
|
||||||
FILESUBTYPE 0x0L
|
|
||||||
BEGIN
|
|
||||||
BLOCK "StringFileInfo"
|
|
||||||
BEGIN
|
|
||||||
BLOCK "040904b0"
|
|
||||||
BEGIN
|
|
||||||
VALUE "Comments", "SPU2 Plugin for PS2 Emulators"
|
|
||||||
VALUE "CompanyName", "PCSX2 Dev Team"
|
|
||||||
VALUE "FileDescription", "SPU2 Plugin (git build)"
|
|
||||||
VALUE "FileVersion", "2.0.GIT"
|
|
||||||
VALUE "InternalName", "SPU2"
|
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2011"
|
|
||||||
VALUE "OriginalFilename", "SPU2-2.0.dll"
|
|
||||||
VALUE "ProductName", "SPU2"
|
|
||||||
VALUE "ProductVersion", "2.0.GIT"
|
|
||||||
END
|
|
||||||
END
|
|
||||||
BLOCK "VarFileInfo"
|
|
||||||
BEGIN
|
|
||||||
VALUE "Translation", 0x409, 1200
|
|
||||||
END
|
|
||||||
END
|
|
||||||
|
|
||||||
#endif // English (United States) resources
|
#endif // English (United States) resources
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
#define IDD_DEBUG 105
|
#define IDD_DEBUG 105
|
||||||
#define IDD_DSOUND 106
|
#define IDD_DSOUND 106
|
||||||
#define IDD_WAVEOUT 109
|
#define IDD_WAVEOUT 109
|
||||||
#define IDB_SPU2X_SMALL 116
|
|
||||||
#define IDD_CONFIG_SOUNDTOUCH 117
|
#define IDD_CONFIG_SOUNDTOUCH 117
|
||||||
#define IDD_CONFIG_DEBUG 118
|
#define IDD_CONFIG_DEBUG 118
|
||||||
#define IDD_PORTAUDIO 119
|
#define IDD_PORTAUDIO 119
|
||||||
|
|
Loading…
Reference in New Issue