InputRoll - remove testing code

This commit is contained in:
adelikat 2014-09-03 02:57:39 +00:00
parent 8011de9c39
commit eebe877d28
2 changed files with 0 additions and 6 deletions

View File

@ -76,12 +76,8 @@ namespace BizHawk.Client.EmuHawk.CustomControls
{
IntPtr hbmp = bitmap.GetHbitmap();
var bitHDC = CreateCompatibleDC(CurrentHDC);
IntPtr old = new IntPtr(SelectObject(bitHDC, hbmp));
//SetBkMode(bitHDC, BkModes.TRANSPARENT);
BitBlt(CurrentHDC, x, y, bitmap.Width, bitmap.Height, bitHDC, 0, 0, 0xCC0020);
SelectObject(bitHDC, old);
DeleteDC(bitHDC);
}

View File

@ -500,8 +500,6 @@ namespace BizHawk.Client.EmuHawk
//Foreground
DrawData(e);
Gdi.DrawBitmap(Properties.Resources.te_arrow, 1, 1);
Gdi.CopyToScreen();
Gdi.EndOffScreenBitmap();
}