mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
Merge branch 'master' into camera_betterer
This commit is contained in:
@ -2012,7 +2012,7 @@ void debug(u32 param)
|
|||||||
fclose(shit);
|
fclose(shit);
|
||||||
|
|
||||||
/*FILE*
|
/*FILE*
|
||||||
shit = fopen("debug/camera9.bin", "wb");
|
shit = fopen("debug/directboot9.bin", "wb");
|
||||||
for (u32 i = 0x02000000; i < 0x04000000; i+=4)
|
for (u32 i = 0x02000000; i < 0x04000000; i+=4)
|
||||||
{
|
{
|
||||||
u32 val = DSi::ARM9Read32(i);
|
u32 val = DSi::ARM9Read32(i);
|
||||||
|
@ -41,10 +41,10 @@
|
|||||||
|
|
||||||
std::string EmuDirectory;
|
std::string EmuDirectory;
|
||||||
|
|
||||||
void emuStop();
|
|
||||||
|
|
||||||
extern CameraManager* camManager[2];
|
extern CameraManager* camManager[2];
|
||||||
|
|
||||||
|
void emuStop();
|
||||||
|
|
||||||
|
|
||||||
namespace Platform
|
namespace Platform
|
||||||
{
|
{
|
||||||
@ -103,7 +103,6 @@ void IPCDeInit()
|
|||||||
IPCBuffer->detach();
|
IPCBuffer->detach();
|
||||||
delete IPCBuffer;
|
delete IPCBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
IPCBuffer = nullptr;
|
IPCBuffer = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -496,6 +495,16 @@ u16 MP_RecvReplies(u8* data, u64 timestamp, u16 aidmask)
|
|||||||
return LocalMP::RecvReplies(data, timestamp, aidmask);
|
return LocalMP::RecvReplies(data, timestamp, aidmask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int MP_RecvHostPacket(u8* data, u64* timestamp)
|
||||||
|
{
|
||||||
|
return LocalMP::RecvHostPacket(data, timestamp);
|
||||||
|
}
|
||||||
|
|
||||||
|
u16 MP_RecvReplies(u8* data, u64 timestamp, u16 aidmask)
|
||||||
|
{
|
||||||
|
return LocalMP::RecvReplies(data, timestamp, aidmask);
|
||||||
|
}
|
||||||
|
|
||||||
bool LAN_Init()
|
bool LAN_Init()
|
||||||
{
|
{
|
||||||
if (Config::DirectLAN)
|
if (Config::DirectLAN)
|
||||||
|
@ -271,13 +271,13 @@ private slots:
|
|||||||
void onOpenAudioSettings();
|
void onOpenAudioSettings();
|
||||||
void onUpdateAudioSettings();
|
void onUpdateAudioSettings();
|
||||||
void onAudioSettingsFinished(int res);
|
void onAudioSettingsFinished(int res);
|
||||||
void onOpenFirmwareSettings();
|
|
||||||
void onOpenPathSettings();
|
|
||||||
void onOpenMPSettings();
|
void onOpenMPSettings();
|
||||||
void onMPSettingsFinished(int res);
|
void onMPSettingsFinished(int res);
|
||||||
void onOpenWifiSettings();
|
void onOpenWifiSettings();
|
||||||
void onWifiSettingsFinished(int res);
|
void onWifiSettingsFinished(int res);
|
||||||
|
void onOpenFirmwareSettings();
|
||||||
void onFirmwareSettingsFinished(int res);
|
void onFirmwareSettingsFinished(int res);
|
||||||
|
void onOpenPathSettings();
|
||||||
void onPathSettingsFinished(int res);
|
void onPathSettingsFinished(int res);
|
||||||
void onOpenInterfaceSettings();
|
void onOpenInterfaceSettings();
|
||||||
void onInterfaceSettingsFinished(int res);
|
void onInterfaceSettingsFinished(int res);
|
||||||
|
Reference in New Issue
Block a user