yeah and they didnt put a flicker filter\ soften patch option like they said either

...just make the bios patch all .xbe that are launched with this code
patch the lines that read:
CODE
// Initialize the graphics subsystem
g_graphicsManager.Create( g_rendererOptions.m_vsync, ( mameoxLaunchData->m_command == LAUNCH_CREATE_MAME_GAME_LIST ) );
LPDIRECT3DDEVICE8 pD3DDevice = g_graphicsManager.GetD3DDevice();
And change it to :
CODE
g_graphicsManager.Create( g_rendererOptions.m_vsync, ( mameoxLaunchData->m_command == LAUNCH_CREATE_MAME_GAME_LIST ) );
LPDIRECT3DDEVICE8 pD3DDevice = g_graphicsManager.GetD3DDevice();
pD3DDevice->Clear( 0L, NULL, D3DCLEAR_TARGET|D3DCLEAR_ZBUFFER|D3DCLEAR_STENCIL,0x00000000, 1.0f, 0L );
pD3DDevice->Present( NULL, NULL, NULL, NULL );
pD3DDevice->SetSoftDisplayFilter(0);
pD3DDevice->SetFlickerFilter(0);
This hard codes the flicker and soften filters to 'off'. The code to make this selectable is a little harder and not really suitable to be pasted on a forum by me, as I am too lazy."
From TMaul
C'mon Team We all want to play halo 2 with flicker\soften filters OFF!!!
