Remove debug log

This commit is contained in:
Xele02 2012-12-10 13:16:00 +01:00
parent f633e2d9b5
commit 634a696fbe

View File

@ -60,7 +60,6 @@ void PSPDialog::Update()
bool PSPDialog::IsButtonPressed(int checkButton)
{
INFO_LOG(HLE,"%d %d %d %d",checkButton,lastButtons,buttons,(!(lastButtons & checkButton)) && (buttons & checkButton));
return (!(lastButtons & checkButton)) && (buttons & checkButton);
}