Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platforms/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

LIBZEDMD_SHA=5c44646f2af4b1419b4cdcaed3a2799ca9439221
LIBZEDMD_SHA=e8466d252a71539a50bc8ac6271a00fd2d48884c
LIBSERUM_SHA=5046e20351e7d4359e976b1edcdce34937c9289f
LIBPUPDMD_SHA=4a1123220e6dce73c87cc584494df2ac82cb6f4c
LIBVNI_SHA=7258e2fa0d086e1224d6510d44a61879e6b344b1
Expand Down
4 changes: 3 additions & 1 deletion src/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ void Config::parseConfigFile(const char* path)

try
{
SetZeDMDHeight(r.Get<int>("ZeDMD-SPI", "Height", 32));
int height = r.Get<int>("ZeDMD-SPI", "Height", 32);
if (height == 16) height = 32; // x16 renders as x32 rom frames
SetZeDMDHeight(height);
}
catch (const std::exception&)
{
Expand Down
Loading