GSDumpGUI: Forgot a file

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4165 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1 2010-12-28 18:32:12 +00:00
parent 22a70739db
commit 3064551c09

View File

@ -0,0 +1,12 @@
using System;
namespace GSDumpGUI
{
public class GIFUtil
{
public static UInt64 GetBit(UInt64 value, int lower, int count)
{
return (value >> lower) & (ulong)((1ul << count) - 1);
}
}
}