onepad|gsdx: remove useless debug messages

This commit is contained in:
Gregory Hainaut 2017-01-22 21:47:05 +01:00
parent 1e7fd83ac5
commit 5c7c9452d6
2 changed files with 4 additions and 0 deletions

View File

@ -177,7 +177,9 @@ public:
~GSCodeGeneratorFunctionMap()
{
#ifdef _DEBUG
fprintf(stderr, "%s generated %zu bytes of instruction\n", m_name.c_str(), m_total_code_size);
#endif
}
VALUE GetDefaultFunction(KEY key)

View File

@ -80,6 +80,7 @@ void Pad::set_mode(int _mode)
{
mode = _mode;
#if 0
fprintf(stdout, "OnePad: set new pad mode=");
if (mode == MODE_DIGITAL)
fprintf(stdout, "DIGITAL\n");
@ -89,6 +90,7 @@ void Pad::set_mode(int _mode)
fprintf(stdout, "DS2 NATIVE\n");
else
fprintf(stdout, "??? 0x%x\n", mode);
#endif
}
void Pad::set_vibrate(int motor, u8 val)