head 1.2; access; symbols; locks; strict; comment @// @; 1.2 date 2025.04.06.14.33.47; author tsutsui; state dead; branches; next 1.1; commitid nEjOw0wdbEn430QF; 1.1 date 2025.04.04.23.32.21; author tsutsui; state Exp; branches; next ; commitid ZOVcSE3H5wAO5NPF; desc @@ 1.2 log @PC6001VX: update to 4.12.12. Upstream chanegs: https://github.com/eighttails/PC6001VX/blob/v4.2.12/README.adoc 4.2.12 2025/04/06 * Merged upstream PC6001V version 2.1.4. * Fixed an issue where lower case file names could not be used with debugger savemem,loadmem command. @ text @$NetBSD: patch-src_debug.cpp,v 1.1 2025/04/04 23:32:21 tsutsui Exp $ - workaround for upstream issue #19: https://github.com/eighttails/PC6001VX/issues/19 Filenames are implicitly converted to uppercase on loadmem and savemem commands on debugger mode. --- src/debug.cpp.orig 2025-04-04 18:24:39.861946787 +0000 +++ src/debug.cpp @@@@ -1044,7 +1044,9 @@@@ void cWndMon::Shift( void ) argv.Str = Argv.front(); // 大文字化 +#if defined(_WIN32) || defined(_WIN64) std::transform( argv.Str.begin(), argv.Str.end(), argv.Str.begin(), ::toupper ); +#endif if( argv.Str.front() == '#' ){ size = true; @ 1.1 log @PC6001VX: apply patch to work around upstream issue #19. Filenames are implicitly converted to uppercase on loadmem and savemem commands on debugger mode. @ text @d1 1 a1 1 $NetBSD$ @