added the mic to windows build
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@872 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f6f6ada9d5
commit
1be0674ef0
|
@ -3,3 +3,23 @@ GFXPlugin = Plugins\Plugin_VideoOGL.dll
|
|||
DSPPlugin = Plugins\Plugin_DSP_HLE.dll
|
||||
PadPlugin = Plugins\Plugin_PadSimple.dll
|
||||
WiiMotePlugin = Plugins\Plugin_Wiimote.dll
|
||||
[General]
|
||||
LastFilename = D:\Games\Gamecube\Baten Kaitos Disc 1.gcz
|
||||
GCMPathes = 1
|
||||
GCMPath0 = D:\Games\Gamecube
|
||||
[Core]
|
||||
GFXPlugin = Plugins\Plugin_VideoOGL.dll
|
||||
DSPPlugin = Plugins\Plugin_DSP_HLE.dll
|
||||
PadPlugin = Plugins\Plugin_PadSimple.dll
|
||||
WiiMotePlugin = Plugins\Plugin_Wiimote.dll
|
||||
HLEBios = True
|
||||
UseDynarec = True
|
||||
UseDualCore = True
|
||||
SkipIdle = True
|
||||
LockThreads = False
|
||||
DefaultGCM =
|
||||
DVDRoot =
|
||||
OptimizeQuantizers = True
|
||||
SelectedLanguage = 0
|
||||
RunCompareServer = False
|
||||
RunCompareClient = False
|
||||
|
|
|
@ -586,6 +586,14 @@
|
|||
RelativePath=".\Src\Hw\EXI_DeviceMemoryCard.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\HW\EXI_DeviceMic.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\HW\EXI_DeviceMic.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="SI - Serial Interface"
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#include "PatchEngine.h"
|
||||
#include "IniFile.h"
|
||||
#include "HW/Memmap.h"
|
||||
#include "ARDecrypt.h"
|
||||
|
||||
|
||||
enum PatchType
|
||||
|
@ -193,10 +194,11 @@ void LoadActionReplayCodes(IniFile &ini)
|
|||
else
|
||||
{
|
||||
SplitString(line, "-", pieces);
|
||||
if (pieces.size() == 3 && pieces[0].size() == 4 && pieces[1].size() == 4 && pieces[2].size() == 4)
|
||||
if (pieces.size() == 3 && pieces[0].size() == 4 && pieces[1].size() == 4 && pieces[2].size() == 5)
|
||||
{
|
||||
// Encrypted AR code
|
||||
PanicAlert("Dolphin does not yet support encrypted AR codes.");
|
||||
PanicAlert("buildseeds\ncode: %s %s %s",pieces[0].c_str(), pieces[1].c_str(), pieces[2].c_str());
|
||||
buildseeds();
|
||||
}
|
||||
else if (line.size() > 1)
|
||||
{
|
||||
|
|
|
@ -36,7 +36,7 @@ void SetVolumeName(const std::string& _rFullPath)
|
|||
delete g_pVolume;
|
||||
g_pVolume = NULL;
|
||||
}
|
||||
catch()
|
||||
catch(...)
|
||||
{
|
||||
printf("Couldn't Delete g_pVolume and set it to Null!\n");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue