From af00ab413ca0c1ef304295c3b9fb5cec2db80ef5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 14 Sep 2006 20:35:03 +0000 Subject: [PATCH] remove IsValid --- stepmania/src/MenuInput.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/stepmania/src/MenuInput.h b/stepmania/src/MenuInput.h index ce7e518fe5..a9def50079 100644 --- a/stepmania/src/MenuInput.h +++ b/stepmania/src/MenuInput.h @@ -31,8 +31,6 @@ struct MenuInput bool operator==( const MenuInput &other ) const { return button == other.button; }; bool operator!=( const MenuInput &other ) const { return !operator==(other); }; - - inline bool IsValid() const { return button != MenuButton_INVALID; }; }; #endif