no message

This commit is contained in:
Chris Danford
2002-05-27 08:23:27 +00:00
parent 8549236385
commit b723efdaba
79 changed files with 1728 additions and 1620 deletions
+7 -1
View File
@@ -16,6 +16,7 @@
#include <math.h>
#include "RageLog.h"
#include "ErrorCatcher/ErrorCatcher.h"
#include "PrefsManager.h"
Sprite::Sprite()
@@ -191,7 +192,12 @@ void Sprite::Update( float fDeltaTime )
void Sprite::DrawPrimitives()
{
DISPLAY->TranslateLocal( -0.5f, -0.5f, 0 ); // offset so that pixels are aligned to texels
// offset so that pixels are aligned to texels
if( PREFSMAN->m_bHighDetail ) // 640x480
DISPLAY->TranslateLocal( -0.5f, -0.5f, 0 );
else // 320x240
DISPLAY->TranslateLocal( -0.5f, -0.5f, 0 );
// DISPLAY->TranslateLocal( -1, -1, 0 ); // offset so that pixels are aligned to texels
if( m_pTexture == NULL )
return;