Remove unnecessary shadow variables and signed/unsigned comparisons.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6244 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2010-10-01 12:38:31 +00:00
parent 23f8da4bf7
commit c8c805f720
6 changed files with 12 additions and 11 deletions

View File

@ -21,6 +21,7 @@
namespace Common
{
std::string CreateTicketFileName(u64 _titleID)
{
char TicketFilename[1024];
@ -85,4 +86,5 @@ bool CheckTitleTIK(u64 _titleID)
INFO_LOG(DISCIO, "Invalid or no tik for title %08x %08x", (u32)(_titleID >> 32), (u32)(_titleID & 0xFFFFFFFF));
return false;
}
};
};