Skip to content

Commit

Permalink
v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sereni-ty committed Jun 16, 2017
1 parent c60add2 commit 5eb00f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion SkyUtilities/Plugin.h
Expand Up @@ -28,7 +28,7 @@ enum
#define PLUGIN_RELEASE_VERSION_MAJOR 0
#define PLUGIN_RELEASE_VERSION_MINOR 2

#define PLUGIN_RELEASE_VERSION_STR "0.2"
#define PLUGIN_RELEASE_VERSION_STR "0.3"

#define PLUGIN_VERSION ((PLUGIN_RELEASE_VERSION_MAJOR & 0xFF) << 24) | (PLUGIN_RELEASE_VERSION_MINOR & 0xFFFFFF)

Expand Down
6 changes: 2 additions & 4 deletions SkyUtilities/Steam/SteamInterface.cpp
Expand Up @@ -35,9 +35,7 @@ namespace SKU::Steam { // TODO: achievements buffern..

Achievement(std::string n, std::string d, bool s)
: name(n), description(d), status(s)
{
Plugin::Log(LOGL_VERBOSE, "Achievement: %s ('%s'): %s", n.c_str(), d.c_str(), s ? "done" : "undone");
}
{}
};

std::vector<Achievement> achievements;
Expand Down Expand Up @@ -80,7 +78,7 @@ namespace SKU::Steam { // TODO: achievements buffern..
size_t num_achievements = api.GetStats()->GetNumAchievements();
achievements.resize(num_achievements);

Plugin::Log(LOGL_INFO, "Steam: %d achievements..", achievements.capacity());
Plugin::Log(LOGL_INFO, "Steam: Loading %d achievements..", achievements.capacity());

for (size_t i = 0; i < num_achievements; i++)
{
Expand Down

0 comments on commit 5eb00f0

Please sign in to comment.