X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fsdl%2Futility.cpp;h=1dbf502cd953ed1698ac738ebfb3ca616e2ff9c3;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=94eb6252465e8238953c76966c08662edc19b116;hpb=ef2496b3cb7ce66b7f831278be66261834b732e5;p=l2e.git diff --git a/src/sdl/utility.cpp b/src/sdl/utility.cpp index 94eb625..1dbf502 100644 --- a/src/sdl/utility.cpp +++ b/src/sdl/utility.cpp @@ -2,7 +2,7 @@ #include -using geometry::Vector; +using math::Vector; namespace sdl { @@ -15,7 +15,7 @@ void HorizontalLine(SDL_Surface *dst, const Vector &position, unsigned int SDL_FillRect(dst, &destRect, color); } -void VerticalLine(SDL_Surface *dst, const geometry::Vector &position, unsigned int length, Uint32 color) { +void VerticalLine(SDL_Surface *dst, const math::Vector &position, unsigned int length, Uint32 color) { SDL_Rect destRect; destRect.x = position.X(); destRect.y = position.Y();