Fix double-spacing. I think this happened when the -kb flag was removed.

This commit is contained in:
Glenn Maynard
2003-07-08 23:34:15 +00:00
parent b3f91f52e9
commit a19e0548a2
+1 -14
View File
@@ -1,15 +1,11 @@
/*
-----------------------------------------------------------------------------
Class: ScreenUnlock
Desc: See header.
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
curewater
-----------------------------------------------------------------------------
*/
#include "global.h"
#include "PrefsManager.h"
#include "ScreenUnlock.h"
@@ -30,27 +26,20 @@ ScreenUnlock::ScreenUnlock() : ScreenAttract("ScreenUnlock")
{
// new unlock graphic
char filename[30];
sprintf(filename, "UnlockGraphic%d", i);
Unlocks[i].Load( THEME->GetPathToG(filename) );
sprintf(filename, "Unlock%d", i);
PointsUntilNextUnlock.SetXY(
THEME->GetMetricI("ScreenUnlock",ssprintf("Unlock%dX", i)),
THEME->GetMetricI("ScreenUnlock",ssprintf("Unlock%dX", i)) );
Unlocks[i].SetName( ssprintf("Unlock%d",i) );
UtilSetXY( Unlocks[i], "ScreenUnlock" );
if (!GAMESTATE->m_pUnlockingSys->SongIsLocked
(THEME->GetMetric
("ScreenUnlock", ssprintf
("Unlock%dSong", i))))
this->AddChild(&Unlocks[i]);
}
/* Remove the decimal
if( sDP.Find(".",1) > 0 )
{
@@ -59,12 +48,10 @@ ScreenUnlock::ScreenUnlock() : ScreenAttract("ScreenUnlock")
// No negative numbers
if( sDP.Left(1) == "-" )
{
sDP = "*";
};
PointsUntilNextUnlock.SetText( sDP );
PointsUntilNextUnlock.SetZoom( THEME->GetMetricF("ScreenUnlock","DancePointsZoom") );
PointsUntilNextUnlock.SetXY( THEME->GetMetricI("ScreenUnlock","DancePointsDisplayX"), THEME->GetMetricI("ScreenUnlock","DancePointsDisplayY") );
this->AddChild( &PointsUntilNextUnlock );
}
}