Skip to content

Commit

Permalink
Fix code style to make clang-format happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Mar 5, 2020
1 parent 946c03c commit ef09e8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/remoteplayer.h
Expand Up @@ -84,7 +84,10 @@ class RemotePlayer : public Player
return hud_hotbar_selected_image;
}

void setSky(const SkyboxParams &skybox_params) { m_skybox_params = skybox_params; }
void setSky(const SkyboxParams &skybox_params)
{
m_skybox_params = skybox_params;
}

const SkyboxParams &getSkyParams() const { return m_skybox_params; }

Expand Down
1 change: 0 additions & 1 deletion src/skyparams.h
Expand Up @@ -118,4 +118,3 @@ class SkyboxDefaults
return stars;
}
};

0 comments on commit ef09e8a

Please sign in to comment.