Merge pull request #298 from XPila/MK3

bug fix (cannot compile) - ultralcd.cpp - conversion from (const char*)
This commit is contained in:
XPila 2017-12-08 19:22:26 +01:00 committed by GitHub
commit 6f810a9548
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6160,7 +6160,7 @@ static void menu_action_function(menuFunc_t data) {
static bool check_file(const char* filename) {
bool result = false;
uint32_t filesize;
card.openFile(filename, true);
card.openFile((char*)filename, true);
filesize = card.getFileSize();
if (filesize > END_FILE_SECTION) {
card.setIndex(filesize - END_FILE_SECTION);