From: Alexis Laferrière Date: Thu, 27 Nov 2014 12:53:18 +0000 (-0500) Subject: lib/sdl: native_blit is private X-Git-Tag: v0.7~85^2~7 X-Git-Url: http://nitlanguage.org lib/sdl: native_blit is private Signed-off-by: Alexis Laferrière --- diff --git a/lib/sdl.nit b/lib/sdl.nit index df270e4..806b07b 100644 --- a/lib/sdl.nit +++ b/lib/sdl.nit @@ -173,7 +173,7 @@ extern class SDLDrawable `{SDL_Surface*`} redef type I: SDLImage redef fun blit(img, x, y) do native_blit(img, x.to_i, y.to_i) - fun native_blit(img: I, x, y: Int) `{ + private fun native_blit(img: I, x, y: Int) `{ SDL_Rect dst; dst.x = x; dst.y = y;