diff options
author | Tarek Soliman | 2011-09-24 14:19:03 -0500 |
---|---|---|
committer | Tarek Soliman | 2011-09-24 14:21:06 -0500 |
commit | 7c8891fed4c439c365c05bb64968df3ee41bae87 (patch) | |
tree | 5cff4bea47112fa91c30093ac93d25878839ead6 | |
parent | 7b68952726724cfc35a0d9e98b485e8c615907cb (diff) | |
download | scummvm-rg350-7c8891fed4c439c365c05bb64968df3ee41bae87.tar.gz scummvm-rg350-7c8891fed4c439c365c05bb64968df3ee41bae87.tar.bz2 scummvm-rg350-7c8891fed4c439c365c05bb64968df3ee41bae87.zip |
CONFIGURE: don't use savegame timestamp on N64
N64 does not have a RTC
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2303,6 +2303,7 @@ if test -n "$_host"; then _backend="n64" _mt32emu=no _build_scalers=no + _savegame_timestamp=no _translation=no _keymapper=no _text_console=no @@ -2629,7 +2630,7 @@ esac # Disable savegame timestamp support for backends which don't have a reliable real time clock # case $_backend in - gph) + gph | n64) if test "$_savegame_timestamp" = auto ; then _savegame_timestamp=no else |