Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #784 from archshift/rem-tracer
Removed unused Tracer.h/cpp
  • Loading branch information
shuffle2 committed Aug 12, 2014
2 parents 36af1b5 + c0008b2 commit 0c64b04
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 144 deletions.
1 change: 0 additions & 1 deletion Source/Core/Core/CMakeLists.txt
Expand Up @@ -15,7 +15,6 @@ set(SRCS ActionReplay.cpp
PatchEngine.cpp
State.cpp
stdafx.cpp
Tracer.cpp
VolumeHandler.cpp
Boot/Boot_BS2Emu.cpp
Boot/Boot.cpp
Expand Down
5 changes: 1 addition & 4 deletions Source/Core/Core/Core.cpp
Expand Up @@ -130,7 +130,7 @@ void DisplayMessage(const std::string& message, int time_in_ms)
if (_CoreParameter.bRenderToMain &&
SConfig::GetInstance().m_InterfaceStatusbar)
{
Host_UpdateStatusBar(message);
Host_UpdateStatusBar(message);
}
else
{
Expand Down Expand Up @@ -492,9 +492,6 @@ void EmuThread()
// Clear on screen messages that haven't expired
g_video_backend->Video_ClearMessages();

// Close the trace file
Core::StopTrace();

// Reload sysconf file in order to see changes committed during emulation
if (_CoreParameter.bWii)
SConfig::GetInstance().m_SYSCONF->Reload();
Expand Down
3 changes: 0 additions & 3 deletions Source/Core/Core/Core.h
Expand Up @@ -61,17 +61,14 @@ void Callback_WiimoteInterruptChannel(int _number, u16 _channelID, const void* _

void* GetWindowHandle();

void StartTrace(bool write);

// This displays messages in a user-visible way.
void DisplayMessage(const std::string& message, int time_in_ms);

std::string GetStateFileName();
void SetStateFileName(std::string val);

int SyncTrace();
void SetBlockStart(u32 addr);
void StopTrace();

bool ShouldSkipFrame(int skipped);
void VideoThrottle();
Expand Down
2 changes: 0 additions & 2 deletions Source/Core/Core/Core.vcxproj
Expand Up @@ -234,7 +234,6 @@
<ClCompile Include="stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Tracer.cpp" />
<ClCompile Include="VolumeHandler.cpp" />
<ClCompile Include="x64MemTools.cpp" />
</ItemGroup>
Expand Down Expand Up @@ -414,7 +413,6 @@
<ClInclude Include="PowerPC\SignatureDB.h" />
<ClInclude Include="State.h" />
<ClInclude Include="stdafx.h" />
<ClInclude Include="Tracer.h" />
<ClInclude Include="VolumeHandler.h" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 0 additions & 2 deletions Source/Core/Core/Core.vcxproj.filters
Expand Up @@ -146,7 +146,6 @@
<ClCompile Include="NetPlayServer.cpp" />
<ClCompile Include="PatchEngine.cpp" />
<ClCompile Include="State.cpp" />
<ClCompile Include="Tracer.cpp" />
<ClCompile Include="VolumeHandler.cpp" />
<ClCompile Include="x64MemTools.cpp" />
<ClCompile Include="ActionReplay.cpp">
Expand Down Expand Up @@ -721,7 +720,6 @@
<ClInclude Include="NetPlayServer.h" />
<ClInclude Include="PatchEngine.h" />
<ClInclude Include="State.h" />
<ClInclude Include="Tracer.h" />
<ClInclude Include="VolumeHandler.h" />
<ClInclude Include="ActionReplay.h">
<Filter>ActionReplay</Filter>
Expand Down
127 changes: 0 additions & 127 deletions Source/Core/Core/Tracer.cpp

This file was deleted.

5 changes: 0 additions & 5 deletions Source/Core/Core/Tracer.h

This file was deleted.

0 comments on commit 0c64b04

Please sign in to comment.