Skip to content

Commit

Permalink
Update to libtesla 1.3.3 to fix crashes with too many sysmodules running
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Apr 16, 2020
1 parent 3167b23 commit a7c6e81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/libtesla
Submodule libtesla updated 1 files
+45 −47 include/tesla.hpp
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void rebuildUI() {

for (s32 y1 = 0; y1 < 31; y1++) {
for (s32 x1 = 0; x1 < 84; x1++) {
const tsl::gfx::Color color = { static_cast<u8>(logo[3] >> 4), static_cast<u8>(logo[2] >> 4), static_cast<u8>(logo[1] >> 4), static_cast<u8>(logo[0] >> 4) };
const tsl::Color color = { static_cast<u8>(logo[3] >> 4), static_cast<u8>(logo[2] >> 4), static_cast<u8>(logo[1] >> 4), static_cast<u8>(logo[0] >> 4) };
renderer->setPixelBlendSrc(20 + x1, 20 + y1, renderer->a(color));
logo += 4;
}
Expand Down

0 comments on commit a7c6e81

Please sign in to comment.