From 30963ab843ce649496e02870140d73a2f9b725ff Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 16 Aug 2006 01:58:44 +0000 Subject: [PATCH] all dialogs are warnings --- stepmania/src/ActorUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index f11fdab095..7255a14b79 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -196,13 +196,13 @@ Actor* ActorUtil::LoadFromNode( const RString& sDir, const XNode* pNode, Actor * { RString sName; if( !pChild->GetAttrValue( "Name", sName ) ) - Dialog::OK( ssprintf("Param node in '%s' is missing the attribute \"Name\"", sDir.c_str()), "MISSING_ATTRIBUTE_WARNING" ); + Dialog::OK( ssprintf("Param node in '%s' is missing the attribute \"Name\"", sDir.c_str()), "MISSING_ATTRIBUTE" ); LuaHelpers::RunAtExpressionS( sName ); RString s; if( !pChild->GetAttrValue( "Value", s ) ) - Dialog::OK( ssprintf("Param node in '%s' is missing the attribute \"Value\"", sDir.c_str()), "MISSING_ATTRIBUTE_WARNING" ); + Dialog::OK( ssprintf("Param node in '%s' is missing the attribute \"Value\"", sDir.c_str()), "MISSING_ATTRIBUTE" ); Lua *L = LUA->Get(); LuaHelpers::RunScript( L, "return " + s, "", 1 );