mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
Please set up auto-props in your svn client. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4488 96395faa-99c1-11dd-bbfe-3dabce05a288
13 lines
No EOL
256 B
C#
13 lines
No EOL
256 B
C#
using System;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
[Serializable]
|
|
public class GIFUtil
|
|
{
|
|
public static UInt64 GetBit(UInt64 value, int lower, int count)
|
|
{
|
|
return (value >> lower) & (ulong)((1ul << count) - 1);
|
|
}
|
|
}
|
|
} |