Skip to content

Commit

Permalink
Silenced two compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Grumbel committed Aug 31, 2014
1 parent c9a3a36 commit 1b0e66b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/object/bicycle_platform.cpp
Expand Up @@ -38,7 +38,7 @@ BicyclePlatform::BicyclePlatform(const Reader& reader) :
}

BicyclePlatform::BicyclePlatform(BicyclePlatform* master_) :
MovingSprite(*master),
MovingSprite(*master_),
master(master_),
slave(this),
center(master->center),
Expand Down
2 changes: 1 addition & 1 deletion src/video/video_system.cpp
Expand Up @@ -60,7 +60,7 @@ VideoSystem::create(VideoSystem::Enum video_system)

default:
assert(!"invalid video system in config");
break;
return {};
}
}

Expand Down

0 comments on commit 1b0e66b

Please sign in to comment.