Skip to content

Commit

Permalink
Fix blurred text on r4
Browse files Browse the repository at this point in the history
  • Loading branch information
fedan committed Jan 24, 2016
1 parent 34df7f3 commit ad567b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Layers/xrRender/dxFontRender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void dxFontRender::OnRender(CGameFont &owner)
// tv = ( l.y / owner.vTS.y ) + ( 0.5f / owner.vTS.y );
tu = ( l.x / owner.vTS.x );
tv = ( l.y / owner.vTS.y );
#ifndef USE_DX10
#if !defined(USE_DX10) && !defined(USE_DX11)
// Make half pixel offset for 1 to 1 mapping
tu +=( 0.5f / owner.vTS.x );
tv +=( 0.5f / owner.vTS.y );
Expand Down

0 comments on commit ad567b6

Please sign in to comment.