mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 02:29:59 -06:00
MusicMod: Simplified the initial console log
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1792 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -37,7 +37,7 @@ InputPlugin::InputPlugin( TCHAR * szDllpath, bool bKeepLoaded ) : Plugin( szDllp
|
||||
iFiltersLen = 0;
|
||||
plugin = NULL;
|
||||
|
||||
wprintf("\InputPlugin::InputPlugin > Begin\n");
|
||||
//wprintf("\InputPlugin::InputPlugin > Begin\n");
|
||||
|
||||
if( !Load() )
|
||||
{
|
||||
@ -235,14 +235,14 @@ bool InputPlugin::Integrate()
|
||||
// Append filter name
|
||||
ToTchar( walk_out, start_display, len_display );
|
||||
|
||||
// =======================================================================================
|
||||
// Print used filetypes
|
||||
TCHAR szBuffer[ 5000 ];
|
||||
*(walk_out + len_display) = TEXT( '\0' );
|
||||
_stprintf( szBuffer, TEXT( " %s" ), walk_out );
|
||||
Console::Append( szBuffer );
|
||||
//printf( szBuffer, TEXT( " %s\n" ), walk_out );
|
||||
// =======================================================================================
|
||||
// =======================================================================================
|
||||
// Print used filetypes
|
||||
TCHAR szBuffer[ 5000 ];
|
||||
*(walk_out + len_display) = TEXT( '\0' );
|
||||
_stprintf( szBuffer, TEXT( " %s" ), walk_out );
|
||||
Console::Append( szBuffer );
|
||||
//printf( szBuffer, TEXT( " %s\n" ), walk_out );
|
||||
// =======================================================================================
|
||||
walk_out += len_display;
|
||||
|
||||
// Convert and append extensions
|
||||
@ -317,15 +317,16 @@ bool InputPlugin::Unload()
|
||||
{
|
||||
if( !IsLoaded() ) return true;
|
||||
|
||||
|
||||
DisIntegrate();
|
||||
|
||||
|
||||
TCHAR szBuffer[ 5000 ];
|
||||
_stprintf( szBuffer, TEXT( "Unloading <%s>" ), GetFilename() );
|
||||
Console::Append( szBuffer );
|
||||
Console::Append( TEXT( " " ) );
|
||||
printf( ">>>Unloading <%s>\n" , GetFilename() );
|
||||
#ifndef NOGUI
|
||||
TCHAR szBuffer[ 5000 ];
|
||||
_stprintf( szBuffer, TEXT( "Unloading '%s'" ), GetFilename() );
|
||||
Console::Append( szBuffer );
|
||||
Console::Append( TEXT( " " ) );
|
||||
#else
|
||||
printf( ">>> Unloading '%s'\n" , GetFilename() );
|
||||
#endif
|
||||
|
||||
// Quit
|
||||
if( plugin )
|
||||
|
Reference in New Issue
Block a user