From 028cae7117fd6b5a0e2fe837b1899bad453abf48 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 28 Dec 2005 09:15:33 +0000 Subject: [PATCH] cosmetic --- .../src/arch/InputHandler/InputHandler_Win32_MIDI.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/arch/InputHandler/InputHandler_Win32_MIDI.cpp b/stepmania/src/arch/InputHandler/InputHandler_Win32_MIDI.cpp index b463483740..4a84823125 100644 --- a/stepmania/src/arch/InputHandler/InputHandler_Win32_MIDI.cpp +++ b/stepmania/src/arch/InputHandler/InputHandler_Win32_MIDI.cpp @@ -34,14 +34,14 @@ InputHandler_Win32_MIDI::InputHandler_Win32_MIDI() MMRESULT result = midiInOpen( &g_device, device_id, (DWORD) &midiCallback, (DWORD) this, CALLBACK_FUNCTION ); if( result != MMSYSERR_NOERROR ) { - LOG->Warn( "Error with MIDI Opening: %s", GetMidiError(result).c_str() ); + LOG->Warn( "Error opening MIDI device: %s", GetMidiError(result).c_str() ); return; } result = midiInStart(g_device); if( result != MMSYSERR_NOERROR ) { - LOG->Warn( "Error with MIDI Starting: %s", GetMidiError(result).c_str() ); + LOG->Warn( "Error starting MIDI device: %s", GetMidiError(result).c_str() ); return; } } @@ -53,14 +53,14 @@ InputHandler_Win32_MIDI::~InputHandler_Win32_MIDI() result = midiInReset( g_device ); if( result != MMSYSERR_NOERROR ) { - LOG->Warn( "Error with MIDI Reset: %s", GetMidiError(result).c_str() ); + LOG->Warn( "Error resetting MIDI device: %s", GetMidiError(result).c_str() ); return; } result = midiInClose( g_device ); if( result != MMSYSERR_NOERROR ) { - LOG->Warn( "Error with MIDI Close: %s", GetMidiError(result).c_str() ); + LOG->Warn( "Error closing MIDI device: %s", GetMidiError(result).c_str() ); return; } }