diff --git a/Source/Engine/Input/Mouse.h b/Source/Engine/Input/Mouse.h
index aecccd965..d9d2221dd 100644
--- a/Source/Engine/Input/Mouse.h
+++ b/Source/Engine/Input/Mouse.h
@@ -120,7 +120,8 @@ public:
/// Gets the current state of mouse relative mode.
///
/// The window to check against, or null to check for any window.
- virtual API_FUNCTION() bool IsRelative(Window* window = nullptr) const
+ /// True if mouse is in relative mode, otherwise false.
+ API_FUNCTION() virtual bool IsRelative(Window* window = nullptr) const
{
return _relativeMode;
}