Version 3.1.0: General new features: --------------------- * More accurate emulation of PAL colours (based on analysis of oscillograms of real PAL GTIA output) * Improved PAL blending, working on all grayscale pixels and is accurate now (can be enabled/disabled in "TV effect" display settings) * common sound layer implemented (SDL, JavaNVM, OSS, DOS) with synchro sound. * synchronized sound is now supported by both POKEY sound engines. * turbo mode (F12) is considerably faster * Added cartridge mapping used by "Turbo Hit"/"Atari Blizzard Hit". * Added MegaMax 2 MB cartridge mapping. * Added read-only support for the 4 MB Flash MegaCart mapping. * Added minimal support for The!Cart. General Fixes: -------------- * fixed possible unnecessary cartridge bank switching * fixes and clean up in Java port * fixed diagnostic cartridge cold start (doesn't send Start+Option) * fixed two old bugs in DOS sound (pitch being wrong and sound missing) * fixed keyboard not working for ncurses video and OSS sound
15 lines
431 B
C
15 lines
431 B
C
$NetBSD: patch-cfg.c,v 1.1 2017/12/14 22:12:19 adam Exp $
|
|
|
|
Provide PkgSrc path for the configuration file.
|
|
|
|
--- cfg.c.orig 2014-04-05 19:40:14.000000000 +0000
|
|
+++ cfg.c
|
|
@@ -68,7 +68,7 @@ int CFG_save_on_exit = FALSE;
|
|
#endif
|
|
|
|
#ifndef SYSTEM_WIDE_CFG_FILE
|
|
-#define SYSTEM_WIDE_CFG_FILE "/etc/atari800.cfg"
|
|
+#define SYSTEM_WIDE_CFG_FILE PREFIX "/share/atari800/atari800.cfg"
|
|
#endif
|
|
|
|
static char rtconfig_filename[FILENAME_MAX];
|