mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -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:
@ -261,7 +261,7 @@ void EncodeRGBA6(u8 *dst, u8 *src, u32 format)
|
||||
u32 readStride = 3;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_I4:
|
||||
SetBlockDimensions(3, 3, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
@ -498,7 +498,7 @@ void EncodeRGBA6halfscale(u8 *dst, u8 *src, u32 format)
|
||||
u32 readStride = 6;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_I4:
|
||||
SetBlockDimensions(3, 3, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
@ -732,7 +732,7 @@ void EncodeRGB8(u8 *dst, u8 *src, u32 format)
|
||||
u32 readStride = 3;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_I4:
|
||||
SetBlockDimensions(3, 3, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
@ -947,7 +947,7 @@ void EncodeRGB8halfscale(u8 *dst, u8 *src, u32 format)
|
||||
u32 readStride = 6;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_I4:
|
||||
SetBlockDimensions(3, 3, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
@ -1177,7 +1177,7 @@ void EncodeZ24(u8 *dst, u8 *src, u32 format)
|
||||
u32 readStride = 3;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_Z8:
|
||||
SetBlockDimensions(3, 2, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
@ -1282,7 +1282,7 @@ void EncodeZ24halfscale(u8 *dst, u8 *src, u32 format)
|
||||
u8 r, g, b;
|
||||
u8 *dstBlockStart = dst;
|
||||
|
||||
switch(format)
|
||||
switch (format)
|
||||
{
|
||||
case GX_TF_Z8:
|
||||
SetBlockDimensions(3, 2, sBlkCount, tBlkCount, sBlkSize, tBlkSize);
|
||||
|
Reference in New Issue
Block a user