Skip to content

Commit a7c6e81

Browse files
committed
Update to libtesla 1.3.3 to fix crashes with too many sysmodules running
1 parent 3167b23 commit a7c6e81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/libtesla

source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static void rebuildUI() {
7777

7878
for (s32 y1 = 0; y1 < 31; y1++) {
7979
for (s32 x1 = 0; x1 < 84; x1++) {
80-
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) };
80+
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) };
8181
renderer->setPixelBlendSrc(20 + x1, 20 + y1, renderer->a(color));
8282
logo += 4;
8383
}

0 commit comments

Comments
 (0)