ef24e72b26
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
28 lines
854 B
C++
28 lines
854 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "core/hle/hle.h"
|
|
#include "core/hle/service/ptm_play.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Namespace PTM_PLAY
|
|
|
|
namespace PTM_PLAY {
|
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
|
{ 0x08070082, nullptr, "GetPlayHistory" },
|
|
{ 0x08080000, nullptr, "GetPlayHistoryStart" },
|
|
{ 0x08090000, nullptr, "GetPlayHistoryLength" },
|
|
{ 0x080B0080, nullptr, "CalcPlayHistoryStart" },
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Interface class
|
|
|
|
Interface::Interface() {
|
|
Register(FunctionTable);
|
|
}
|
|
|
|
} // namespace
|