mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-04 15:58:04 +03:00
19 lines
370 B
C++
19 lines
370 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <string>
|
|
#include "Core/PowerPC/JitInterface.h"
|
|
#include "Core/PowerPC/Profiler.h"
|
|
|
|
namespace Profiler
|
|
{
|
|
|
|
bool g_ProfileBlocks;
|
|
|
|
void WriteProfileResults(const std::string& filename)
|
|
{
|
|
JitInterface::WriteProfileResults(filename);
|
|
}
|
|
|
|
} // namespace
|