From ddd26ed83d3ac0335562f762ced273a1d62bd959 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 23 Dec 2017 01:37:09 +0000 Subject: [Style] Updated style in files. --- yage/core/sprite.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'yage/core/sprite.cpp') diff --git a/yage/core/sprite.cpp b/yage/core/sprite.cpp index a663c379..6862f910 100644 --- a/yage/core/sprite.cpp +++ b/yage/core/sprite.cpp @@ -25,10 +25,10 @@ Sprite::~Sprite() void Sprite::init(float x, float y, float width, float height, const std::string &texture_path) { - x_ = x; - y_ = y; - width_ = width; - height_ = height; + x_ = x; + y_ = y; + width_ = width; + height_ = height; texture_ = ResourceManager::getTexture(texture_path); if (vbo_id_ == 0) { -- cgit