diff --git a/pykd/dbgprint.cpp b/pykd/dbgprint.cpp index d7c9a98..f929303 100644 --- a/pykd/dbgprint.cpp +++ b/pykd/dbgprint.cpp @@ -6,11 +6,11 @@ using namespace std; void DbgPrint::dprint( const string& str ) { - g_Ext->Out( str.c_str() ); + g_Ext->Dml( str.c_str() ); } void DbgPrint::dprintln( const std::string& str ) { - g_Ext->Out( str.c_str() ); - g_Ext->Out( "\r\n" ); + g_Ext->Dml( str.c_str() ); + g_Ext->Dml( "\r\n" ); } \ No newline at end of file