wxWidgets: Bugfix to the private heap, caused by me recovering the wrong file to commit to svn. -_-

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

View File

@ -31,7 +31,7 @@ void _allocateHeap_wxString()
if( win32_string_heap == INVALID_HANDLE_VALUE ) if( win32_string_heap == INVALID_HANDLE_VALUE )
{ {
//wxASSERT( win32_string_heap_refcount == 0 ); //wxASSERT( win32_string_heap_refcount == 0 );
win32_string_heap = HeapCreate( HEAP_NO_SERIALIZE, 0x200000, 0 ); win32_string_heap = HeapCreate( 0, 0x200000, 0 );
} }
} }