summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/text.cpp
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-06-14 00:00:30 -0400
committer Nathan Woods <npwoods@mess.org>2016-06-14 00:00:30 -0400
commitc9b8f7454849ba2c92b9b5f745629a3f47ae9783 (patch)
tree00e6016d81d341dfd44b304bab0c7d0f19ae9ad5 /src/frontend/mame/ui/text.cpp
parent9fe7064f4e03e3cf73c793a9a79505b59e5b5ff1 (diff)
Incorporating Vas Crabb feedback
Diffstat (limited to 'src/frontend/mame/ui/text.cpp')
-rw-r--r--src/frontend/mame/ui/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/ui/text.cpp b/src/frontend/mame/ui/text.cpp
index b535ff552ff..c029c410ff4 100644
--- a/src/frontend/mame/ui/text.cpp
+++ b/src/frontend/mame/ui/text.cpp
@@ -22,7 +22,7 @@ INLINE FUNCTIONS
// is_space_character
//-------------------------------------------------
-static inline bool is_space_character(unicode_char ch)
+inline bool is_space_character(unicode_char ch)
{
return ch == ' ';
}
@@ -33,7 +33,7 @@ static inline bool is_space_character(unicode_char ch)
// character a possible line break?
//-------------------------------------------------
-static inline bool is_breakable_char(unicode_char ch)
+inline bool is_breakable_char(unicode_char ch)
{
// regular spaces and hyphens are breakable
if (is_space_character(ch) || ch == '-')