mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-31 22:42:17 +00:00
GSDumpGUI: Forgot a file
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4165 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
22a70739db
commit
3064551c09
12
tools/GSDumpGUI/Library/GSDump/GSData/GIFUtil.cs
Normal file
12
tools/GSDumpGUI/Library/GSDump/GSData/GIFUtil.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user