Skip to content

Commit

Permalink
Fix gcc compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Oct 31, 2024
1 parent af7fba7 commit 76e2a3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Porytiles-2.x/tools/driver/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
int main()
{
using namespace porytiles::color;
constexpr Bgr15 bgr{};
constexpr Rgba32 rgb{};
const Bgr15 bgr{};
const Rgba32 rgb{};
std::cout << "Hello, Porytiles!" << std::endl;
std::cout << "My BGR raw value: " << std::to_string(bgr.getRawValue()) << std::endl;
std::cout << "My RGB jasc string: " << rgb.toJascString() << std::endl;
Expand Down

0 comments on commit 76e2a3f

Please sign in to comment.