# HG changeset patch # User Beri Levi berilevi@gmail.com # Date 1378830801 -10800 # Node ID 56cc81b1ed49a9d706ac30c2de90979a80494109 # Parent 43d3536a20f7b712a02174de9f50cff47cf46a17 workaround for crash on startup fixes for logs diff -r 43d3536a20f7 -r 56cc81b1ed49 Log.cpp --- a/Log.cpp Mon Sep 09 20:09:01 2013 +0200 +++ b/Log.cpp Tue Sep 10 19:33:21 2013 +0300 @@ -26,8 +26,8 @@ va_end(args); DWORD w; - WriteConsole(hStdOut, pMsg, lstrlenW(pMsg), &w, nullptr); - WriteConsole(hStdOut, L"\r\n", 2, &w, nullptr); + WriteConsoleW(hStdOut, pMsg, lstrlenW(pMsg), &w, nullptr); + WriteConsoleW(hStdOut, L"\r\n", 2, &w, nullptr); } //----- (004BE386) -------------------------------------------------------- void __fastcall log_error(const char *pMessage) diff -r 43d3536a20f7 -r 56cc81b1ed49 Render.cpp --- a/Render.cpp Mon Sep 09 20:09:01 2013 +0200 +++ b/Render.cpp Tue Sep 10 19:33:21 2013 +0300 @@ -6453,7 +6453,7 @@ Error("HiScreen16::LoadTexture - D3Drend->CreateTexture() failed: %x", 0); //v10 = *pOutSurface; //v11 = 0; - if ( bMipMaps ) + if (bMipMaps) { Dst._450DDE(); //v20 = 0; @@ -6472,7 +6472,7 @@ if ( LockSurface_DDraw4(pNextSurf, &desc, DDLOCK_WAIT | DDLOCK_WRITEONLY) ) { - Dst.sub_451007_scale_image_bicubic( + /*Dst.sub_451007_scale_image_bicubic( pHWLTexture->pPixels, pHWLTexture->uWidth, pHWLTexture->uHeight, @@ -6482,7 +6482,7 @@ desc.dwHeight, desc.lPitch >> 1, 0, - 0); + 0);*/ ErrD3D(pNextSurf->Unlock(0)); //bMipMaps = 0x4D86ACu; }