diff options
| author | Soren Jorvang <soren.jorvang@gmail.com> | 2011-05-09 07:43:02 +0000 |
|---|---|---|
| committer | Soren Jorvang <soren.jorvang@gmail.com> | 2011-05-09 07:43:02 +0000 |
| commit | 8cb2443c2fe22196c26d6e15608273dbc9e6551f (patch) | |
| tree | 50f519a2b33f88ec6fda8fdbbb19657f95fa5468 /Source/Core/DiscIO/Src/NANDContentLoader.cpp | |
| parent | 1236e584e0914b307016ac42143cf602e2e4cb23 (diff) | |
Fix non-Windows build.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7533 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/NANDContentLoader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/NANDContentLoader.cpp b/Source/Core/DiscIO/Src/NANDContentLoader.cpp index 732e58511f..6ea48cc893 100644 --- a/Source/Core/DiscIO/Src/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/Src/NANDContentLoader.cpp @@ -108,7 +108,7 @@ public: const SNANDContent* GetContentByIndex(int _Index) const; const u8* GetTMDView() const { return m_TMDView; } const u8* GetTMDHeader() const { return m_TMDHeader; } - const u32 GetTIKSize() const { return m_TIKSize; } + u32 GetTIKSize() const { return m_TIKSize; } const u8* GetTIK() const { return m_TIK; } const std::vector<SNANDContent>& GetContent() const { return m_Content; } @@ -534,7 +534,7 @@ u64 CNANDContentManager::Install_WiiWAD(std::string &fileName) File::IOFile pTicketFile(TicketFileName, "wb"); if (!pTicketFile) { - PanicAlertT("WAD installation failed: error creating %s", TicketFileName); + PanicAlertT("WAD installation failed: error creating %s", TicketFileName.c_str()); return 0; } |
