Fixed silly joystick axis bug.

This commit is contained in:
Chris Danford
2003-01-09 07:46:45 +00:00
parent 1b4ef26e5b
commit 22bb938dd2
11 changed files with 82 additions and 112 deletions
+3 -2
View File
@@ -23,6 +23,7 @@
ScreenTestSound::ScreenTestSound()
{
int i;
this->AddChild(&HEEEEEEEEELP);
HEEEEEEEEELP.SetXY(450, 400);
@@ -35,7 +36,7 @@ ScreenTestSound::ScreenTestSound()
"a Set autostop\n"
"c Set continue");
for(int i = 0; i < nsounds; ++i)
for(i = 0; i < nsounds; ++i)
{
this->AddChild(&s[i].txt);
s[i].txt.LoadFromFont( THEME->GetPathTo("Fonts","normal") );
@@ -62,7 +63,7 @@ s[0].s.SetPlaybackRate(1.20f);
//s[0].s.Play();
selected = 0;
for(int i = 0; i < nsounds; ++i)
for(i = 0; i < nsounds; ++i)
UpdateText(i);
}