From d634c882586ba6d6b094b52a77a42c6fbd465000 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 30 Jan 2019 02:37:56 -0800 Subject: [PATCH] Remove the last bits of old-style save format. All Quetzal all the time now. --- src/sdl/sf_frotz.h | 1 - src/sdl/sf_resource.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/sdl/sf_frotz.h b/src/sdl/sf_frotz.h index e472834..7fbf312 100644 --- a/src/sdl/sf_frotz.h +++ b/src/sdl/sf_frotz.h @@ -55,7 +55,6 @@ int colour_in_use(zword colour); // various data extern bool m_tandy; -extern bool m_quetzal; // CRect m_wndSize; // CString m_propFontName; // CString m_fixedFontName; diff --git a/src/sdl/sf_resource.c b/src/sdl/sf_resource.c index a65f3d2..ccbf25b 100644 --- a/src/sdl/sf_resource.c +++ b/src/sdl/sf_resource.c @@ -18,7 +18,6 @@ zword hx_back_colour; // various data bool m_tandy = 0; -bool m_quetzal = 1; // CRect m_wndSize; // CString m_propFontName; // CString m_fixedFontName; @@ -458,7 +457,6 @@ void sf_readsettings(void) f_setup.ignore_errors = sf_GetProfileInt("Interpreter","Ignore Errors",0); f_setup.expand_abbreviations = sf_GetProfileInt("Interpreter","Expand Abbreviations",0); m_tandy = sf_GetProfileInt("Interpreter","Tandy Bit",0) ? true : false; - m_quetzal = sf_GetProfileInt("Interpreter","Quetzal Format",1) ? true : false; f_setup.script_cols = sf_GetProfileInt("Interpreter","Wrap Script Lines",1) ? 80 : 0; if ((p = sf_GetProfileString("Interpreter","SaveNames",NULL))) -- 2.34.1