VirtuallistView - at least do my previous speed hack when QueryItemBkColor is not set. Then at least tools that don't background drawing don't get an unnecessary speed cost

This commit is contained in:
adelikat 2014-07-30 21:03:06 +00:00
parent 9609bf1601
commit 555370540a
1 changed files with 6 additions and 0 deletions

View File

@ -624,6 +624,12 @@ namespace BizHawk.Client.EmuHawk
case (int)Notices.NM_CUSTOMDRAW:
OnCustomDrawNotice(ref m);
messageProcessed = true;
if (QueryItemBkColor == null)
{
m.Result = (IntPtr)0;
}
break;
case (int)ListViewNotices.LVN_GETDISPINFOW:
OnDispInfoNotice(ref m, false);