Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #637 from lioncash/unused
Core: Remove unused function Callback_ISOName()
  • Loading branch information
delroth committed Jul 18, 2014
2 parents 2fbdc03 + 041445a commit 4db84c5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Source/Core/Core/Core.cpp
Expand Up @@ -71,7 +71,6 @@ static volatile u32 DrawnFrame = 0;
static u32 DrawnVideo = 0;

// Function forwarding
const char *Callback_ISOName(void);
void Callback_WiimoteInterruptChannel(int _number, u16 _channelID, const void* _pData, u32 _Size);

// Function declarations
Expand Down Expand Up @@ -650,18 +649,6 @@ void Callback_VideoCopiedToXFB(bool video_update)
Movie::FrameUpdate();
}

// Callback_ISOName: Let the DSP emulator get the game name
//
const char *Callback_ISOName()
{
SCoreStartupParameter& params =
SConfig::GetInstance().m_LocalCoreStartupParameter;
if (params.m_strName.length() > 0)
return params.m_strName.c_str();
else
return "";
}

void UpdateTitle()
{
u32 ElapseTime = (u32)Timer.GetTimeDifference();
Expand Down

0 comments on commit 4db84c5

Please sign in to comment.