From 131e261c4a5d4748bc5306d67469096412fd1a68 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 17 Feb 2003 05:45:47 +0000 Subject: [PATCH] fix for gcc oddity --- stepmania/src/ScreenNameEntry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenNameEntry.cpp b/stepmania/src/ScreenNameEntry.cpp index f31b1f9857..2bc7b32b89 100644 --- a/stepmania/src/ScreenNameEntry.cpp +++ b/stepmania/src/ScreenNameEntry.cpp @@ -163,7 +163,7 @@ ScreenNameEntry::ScreenNameEntry() continue; /* We have enough columns. */ /* Find out if this column is associated with the START menu button. */ - StyleInput si(PlayerNumber(p), t); + StyleInput si((PlayerNumber)p, t); GameInput gi=GAMESTATE->GetCurrentStyleDef()->StyleInputToGameInput(si); MenuInput m=GAMESTATE->GetCurrentGameDef()->GameInputToMenuInput(gi); if(m.button == MENU_BUTTON_START)