mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fixes spacing for "for", "while", "switch" and "if"
Also moved && and || to ends of lines instead of start. Fixed misc vertical alignments and some { needed newlining.
This commit is contained in:
@ -54,7 +54,7 @@ void GFXDebuggerCheckAndPause(bool update)
|
||||
if (GFXDebuggerPauseFlag)
|
||||
{
|
||||
g_pdebugger->OnPause();
|
||||
while( GFXDebuggerPauseFlag )
|
||||
while ( GFXDebuggerPauseFlag )
|
||||
{
|
||||
g_video_backend->UpdateFPSDisplay("Paused by Video Debugger");
|
||||
|
||||
@ -93,7 +93,7 @@ void GFXDebuggerBase::DumpPixelShader(const char* path)
|
||||
}
|
||||
else
|
||||
{
|
||||
if(g_ActiveConfig.backend_info.bSupportsDualSourceBlend)
|
||||
if (g_ActiveConfig.backend_info.bSupportsDualSourceBlend)
|
||||
{
|
||||
output = "Using dual source blending for destination alpha:\n";
|
||||
/// output += GeneratePixelShaderCode(DSTALPHA_DUAL_SOURCE_BLEND, g_ActiveConfig.backend_info.APIType, g_nativeVertexFmt->m_components);
|
||||
|
Reference in New Issue
Block a user