DumpProto fix

This commit is contained in:
Mind Rapist
2026-02-18 01:59:08 +02:00
parent 2400d2a36f
commit 46c7c0ed59
2 changed files with 2 additions and 1 deletions

View File

@@ -125,7 +125,7 @@ bool CLZObject::BeginDecompress(const void * pvIn)
bool CLZObject::Decompress(DWORD * pdwKey) bool CLZObject::Decompress(DWORD * pdwKey)
{ {
UINT uiSize; lzo_uint uiSize;
int r; int r;
if (m_pHeader->dwEncryptSize) if (m_pHeader->dwEncryptSize)

View File

@@ -830,6 +830,7 @@ void CGraphicTextInstance::Render(RECT * pClipRect)
__GetTextPos(visualSelBegin, &sx, &sy); __GetTextPos(visualSelBegin, &sx, &sy);
__GetTextPos(visualSelEnd, &ex, &sy); __GetTextPos(visualSelEnd, &ex, &sy);
// Handle RTL - use the computed direction for this text instance
// MR-15: Expose text highlighting to Python // MR-15: Expose text highlighting to Python
// Apply horizontal alignment (must match text rendering offset) // Apply horizontal alignment (must match text rendering offset)
float alignOffset = 0.0f; float alignOffset = 0.0f;