Skip to content

Commit

Permalink
SolidBrush constructor not passing id along
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Jun 30, 2024
1 parent ae98d47 commit c4295c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/Graphics/Asset.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ enum class BrushStyle {
class SolidBrush : public AssetTemplate<AssetType::SolidBrush>
{
public:
SolidBrush(AssetID id, Color color) : AssetTemplate(), color(color)
SolidBrush(AssetID id, Color color) : AssetTemplate(id), color(color)
{
}

Expand Down

0 comments on commit c4295c3

Please sign in to comment.