wxWidgets: helps if I fix *both* string and object allocators. I'm a commit spammer tonight. -_-

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1991 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-10-09 00:39:09 +00:00
parent 9db4d2d53a
commit a4f180aa5d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ void _allocateHeap_wxObject()
if( win32_object_heap == INVALID_HANDLE_VALUE ) if( win32_object_heap == INVALID_HANDLE_VALUE )
{ {
//wxASSERT( win32_object_heap_refcount == 0 ); //wxASSERT( win32_object_heap_refcount == 0 );
win32_object_heap = HeapCreate( HEAP_NO_SERIALIZE, 0x200000, 0 ); win32_object_heap = HeapCreate( 0, 0x200000, 0 );
} }
} }