update usage of Texture::from_ll() to take self as a parameter

This commit is contained in:
LQKI
2015-04-13 15:54:34 +03:00
parent 75a60597c7
commit 949bcdc1f5
+1 -1
View File
@@ -135,7 +135,7 @@ impl<'a> LoadTexture for Renderer<'a> {
if raw == ptr::null() {
Err(get_error())
} else {
Ok(Texture::from_ll(raw))
Ok(Texture::from_ll(self, raw))
}
}
}