mirror of https://github.com/PCSX2/pcsx2.git
spu2-x: windows: Remove Unicode to Ascii conversion
Use swscanf instead of sscanf to read wide characters directly
This commit is contained in:
parent
cb4af8fe83
commit
150c53af0f
|
@ -40,7 +40,7 @@ namespace SoundtouchCfg
|
|||
}
|
||||
|
||||
extern int SendDialogMsg( HWND hwnd, int dlgId, UINT code, WPARAM wParam, LPARAM lParam);
|
||||
extern HRESULT GUIDFromString( const char *str, LPGUID guid );
|
||||
extern HRESULT GUIDFromString( const wchar_t *str, LPGUID guid );
|
||||
|
||||
extern void AssignSliderValue( HWND idcwnd, HWND hwndDisplay, int value );
|
||||
extern void AssignSliderValue( HWND hWnd, int idc, int editbox, int value );
|
||||
|
|
|
@ -117,11 +117,7 @@ public:
|
|||
if( m_Device.empty() )
|
||||
throw std::runtime_error( "screw it" );
|
||||
|
||||
// Convert from unicode to ANSI:
|
||||
char guid[256];
|
||||
sprintf_s( guid, "%S", m_Device.c_str() );
|
||||
|
||||
if( (FAILED(GUIDFromString( guid, &cGuid ))) ||
|
||||
if ((FAILED(GUIDFromString(m_Device, &cGuid))) ||
|
||||
FAILED( DirectSoundCreate8(&cGuid,&dsound,NULL) ) )
|
||||
throw std::runtime_error( "try again?" );
|
||||
}
|
||||
|
@ -286,9 +282,7 @@ private:
|
|||
{
|
||||
wchar_t temp[128];
|
||||
|
||||
char temp2[192];
|
||||
sprintf_s( temp2, "%S", m_Device.c_str() );
|
||||
haveGuid = ! FAILED(GUIDFromString(temp2,&DevGuid));
|
||||
haveGuid = !FAILED(GUIDFromString(m_Device, &DevGuid));
|
||||
SendMessage(GetDlgItem(hWnd,IDC_DS_DEVICE),CB_RESETCONTENT,0,0);
|
||||
|
||||
ndevs=0;
|
||||
|
|
|
@ -23,7 +23,7 @@ int SendDialogMsg( HWND hwnd, int dlgId, UINT code, WPARAM wParam, LPARAM lParam
|
|||
return SendMessage( GetDlgItem(hwnd,dlgId), code, wParam, lParam );
|
||||
}
|
||||
|
||||
HRESULT GUIDFromString(const char *str, LPGUID guid)
|
||||
HRESULT GUIDFromString(const wchar_t *str, LPGUID guid)
|
||||
{
|
||||
// "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"
|
||||
|
||||
|
@ -32,7 +32,7 @@ HRESULT GUIDFromString(const char *str, LPGUID guid)
|
|||
int k; // << not used but still needed as of January 6th, 2011
|
||||
} t;
|
||||
|
||||
int r = sscanf_s(str,"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
|
||||
int r = swscanf_s(str,L"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
|
||||
&t.g.Data1,
|
||||
&t.g.Data2,
|
||||
&t.g.Data3,
|
||||
|
|
Loading…
Reference in New Issue