Fix indent alignment

This commit is contained in:
RadWolfie 2018-08-22 11:42:01 -05:00 committed by Luke Usher
parent 0d02840ab9
commit e38f381d99
2 changed files with 3 additions and 3 deletions

View File

@ -1741,7 +1741,7 @@ PS_STATISTICS, *PPS_STATISTICS;
// ******************************************************************
typedef struct _RTL_CRITICAL_SECTION
{
DISPATCHER_HEADER Event; // 0x00
DISPATCHER_HEADER Event; // 0x00
LONG LockCount; // 0x10
LONG RecursionCount; // 0x14
HANDLE OwningThread; // 0x18

View File

@ -79,8 +79,8 @@ void SMCDevice::Init()
{
m_PICVersionStringIndex = 0;
buffer[SMC_COMMAND_AV_PACK] = 1; // AV_PACK_HDTV: see http://xboxdevwiki.net/PIC#The_AV_Pack
// We can't use the existing constant because SMC flags and kernel flags
// different values!
// We can't use the existing constant because SMC flags and kernel flags
// different values!
buffer[SMC_COMMAND_LED_SEQUENCE] = LED::GREEN;
buffer[SMC_COMMAND_SCRATCH] = 0; // http://xboxdevwiki.net/PIC#Scratch_register_values
}