void-packages/srcpkgs/fceux/patches/isascii-musl.patch
Cameron Nemo 3ea776c9c3 fceux: update to 2.3.0.
This switches the GUI from GTK3 to Qt.
GTK3 is still available, but did not work fully in my testing.
Qt is the default and recommended GUI, and it worked.

By ericonr:
- fix build for musl

Closes: #27646 [via git-merge-pr]
2021-02-15 01:36:49 -03:00

13 lines
386 B
Diff

diff --git src/drivers/Qt/HexEditor.cpp src/drivers/Qt/HexEditor.cpp
index 8f078ac..010b2cf 100644
--- src/drivers/Qt/HexEditor.cpp
+++ src/drivers/Qt/HexEditor.cpp
@@ -43,6 +43,8 @@
#include "Qt/ConsoleUtilities.h"
#include "Qt/ConsoleWindow.h"
+#undef isascii
+
static bool memNeedsCheck = false;
static HexBookMarkManager_t hbm;
static std::list <HexEditorDialog_t*> winList;