PCSX2 Documentation/The PCSX2 Program Flow: Difference between revisions

Jump to navigation Jump to search
Line 21: Line 21:
<code>in [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/AppInit.cpp AppInit.cpp]</code>
<code>in [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/AppInit.cpp AppInit.cpp]</code>
<source lang="cpp">
<source lang="cpp">
EnableAllLogging();
bool Pcsx2App::OnInit()
Console.WriteLn("Interface is initializing.  Entering Pcsx2App::OnInit!");
{
EnableAllLogging();
Console.WriteLn("Interface is initializing.  Entering Pcsx2App::OnInit!");
</source>
</source>
Here we enable logging to the pcsx2 frame, and write some messages in it.
Here we enable logging to the pcsx2 frame, and write some messages in it.