diff --git a/desktop/api.cpp b/desktop/api.cpp index e26b4d8..9db645c 100644 --- a/desktop/api.cpp +++ b/desktop/api.cpp @@ -22,8 +22,6 @@ #include #endif -#include - #define SHARED_COMMON_WANT_ALL #define SHARED_MATH_WANT_ALL #include @@ -178,8 +176,6 @@ void FileStoreCloseHandle(EsFileStore *fileStore); EsError NodeOpen(const char *path, size_t pathBytes, uint32_t flags, _EsNodeInformation *node); void ApplicationProcessTerminated(EsObjectID pid); -#include "syscall.cpp" - struct ProcessMessageTiming { double startLogic, endLogic; double startLayout, endLayout; @@ -252,6 +248,7 @@ struct APIInstance { #define CHARACTER_IMAGE (3) // 32 bits per pixel, ARGB. #define CHARACTER_RECOLOR (4) // 32 bits per pixel, AXXX. +#include "syscall.cpp" #include "renderer.cpp" #include "theme.cpp" #define TEXT_RENDERER diff --git a/desktop/text.cpp b/desktop/text.cpp index 07777dd..fe92560 100644 --- a/desktop/text.cpp +++ b/desktop/text.cpp @@ -3376,7 +3376,6 @@ void TextboxEnsureCaretVisibleActionCallback(EsElement *element, EsGeneric conte } if (textbox->scroll.position[1] != scrollY) { - EsPrint(" new scroll %d\n", scrollY); textbox->scroll.SetY(scrollY); } else { break; diff --git a/util/build.c b/util/build.c index d9f3619..e37c8ba 100644 --- a/util/build.c +++ b/util/build.c @@ -534,6 +534,9 @@ void Run(int emulator, int log, int debug) { cpuCores, audioFlags2, logFlags, usbFlags, usbFlags2, secondaryDriveFlags, biosFlags, serialFlags)) { printf("Unable to start Qemu. To manually run the system, use the drive image located at \"bin/drive\".\n"); } + + // Watch serial file as it is being written to: + // tail -f bin/Logs/qemu_serial1.txt } break; case EMULATOR_BOCHS: { diff --git a/util/luigi.h b/util/luigi.h index 00cd795..98db0da 100644 --- a/util/luigi.h +++ b/util/luigi.h @@ -2480,8 +2480,6 @@ void UICodeFocusLine(UICode *code, int index) { } void UICodeInsertContent(UICode *code, const char *content, ptrdiff_t byteCount, bool replace) { - UIFont *previousFont = UIFontActivate(code->font); - if (byteCount == -1) { byteCount = _UIStringLength(content); } @@ -2505,6 +2503,8 @@ void UICodeInsertContent(UICode *code, const char *content, ptrdiff_t byteCount, return; } + UIFont *previousFont = UIFontActivate(code->font); + int lineCount = content[byteCount - 1] != '\n'; for (int i = 0; i < byteCount; i++) {