Hook up sound output in the LLE plugin. Some AX games actually produce some icky scratchy "sound" sometimes :D

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@761 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-10-04 00:16:19 +00:00
parent 8d0f6d40f4
commit 3d475abf2b
8 changed files with 243 additions and 36 deletions

View File

@ -23,6 +23,26 @@
#define __CDebugger_h__
// ---------------------------------------------------------------------------------------
// wx stuff, I'm not sure if we use all these
#ifndef WX_PRECOMP
#include <wx/wx.h>
#include <wx/dialog.h>
#else
#include <wx/wxprec.h>
#endif
#include <wx/button.h>
#include <wx/stattext.h>
#include <wx/statbox.h>
#include <wx/statbmp.h>
#include <wx/sizer.h>
#include <wx/filepicker.h>
#include <wx/listctrl.h>
#include <wx/imaglist.h>
// ------------
#include "../Globals.h"
class CPBView;