From 3086383cdc7087b46ebcd9320c300ea6ba67ec7a Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 7 Jul 2009 16:51:20 +0000 Subject: (svn r16761) -Codechange: make UpdateViewportSignPos(ition) a class function of ViewportSign --- src/signs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/signs.cpp') diff --git a/src/signs.cpp b/src/signs.cpp index 3da538a71..3102d7973 100644 --- a/src/signs.cpp +++ b/src/signs.cpp @@ -42,7 +42,7 @@ void UpdateSignVirtCoords(Sign *si) { Point pt = RemapCoords(si->x, si->y, si->z); SetDParam(0, si->index); - UpdateViewportSignPos(&si->sign, pt.x, pt.y - 6, STR_SIGN_WHITE); + si->sign.UpdatePosition(pt.x, pt.y - 6, STR_SIGN_WHITE); } /** Update the coordinates of all signs */ -- cgit v1.2.3-54-g00ecf