From 90ab3508541a4e3178f77fd0541e4fbf90edff12 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 30 Jul 2006 21:25:18 +0000 Subject: [PATCH] Don't use gcc extension. --- stepmania/src/Steps.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Steps.h b/stepmania/src/Steps.h index eeb5f72cdf..f34cfd5323 100644 --- a/stepmania/src/Steps.h +++ b/stepmania/src/Steps.h @@ -81,7 +81,7 @@ protected: mutable bool m_bNoteDataIsFilled; mutable RString m_sNoteDataCompressed; - inline const Steps *Real() const { return parent ?: this; } + inline const Steps *Real() const { return parent ? parent : this; } RString m_sFilename; bool m_bSavedToDisk; // true if this was loaded from disk or has been saved to disk.