From 099307cf1407b2a1760e537de33853b158551652 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 13 Nov 2008 16:14:57 +0000 Subject: [PATCH] compile fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1165 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AXWii.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AXWii.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AXWii.cpp index 11b1584b32..5d77e3f2d8 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AXWii.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AXWii.cpp @@ -141,8 +141,8 @@ void CUCode_AXWii::MixAdd_(short* _pBuffer, int _iSize, ParamBlockType &PBs) i/2, i, Common::swap16(pSrc[i]), Common::swap16(pSrc[i+1])); } - m_frame->m_bl95->AppendText(m_frame->str95.c_str()); - m_frame->m_bl0->AppendText(m_frame->str0.c_str()); + m_frame->m_bl95->AppendText(wxString::FromAscii(m_frame->str95.c_str())); + m_frame->m_bl0->AppendText(wxString::FromAscii(m_frame->str0.c_str())); m_frame->upd95 = true; } }