mirror of https://github.com/PCSX2/pcsx2.git
20 lines
471 B
C#
20 lines
471 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace GSDumpGUI
|
|||
|
{
|
|||
|
public class GIFRegFOG : GIFReg
|
|||
|
{
|
|||
|
public double F;
|
|||
|
|
|||
|
static public GIFReg Unpack(UInt64 LowData, UInt64 HighData, bool PlainFormat)
|
|||
|
{
|
|||
|
GIFRegFOG u = new GIFRegFOG();
|
|||
|
u.Descriptor = GIFRegDescriptor.FOG;
|
|||
|
u.F = (UInt16)((HighData & 0xFF000000000) >> 36);
|
|||
|
return u;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|