Remove the last bits of old-style save format. All Quetzal all the time now.
authorDavid Griffith <dave@661.org>
Wed, 30 Jan 2019 10:37:56 +0000 (02:37 -0800)
committerDavid Griffith <dave@661.org>
Wed, 30 Jan 2019 10:37:56 +0000 (02:37 -0800)
src/sdl/sf_frotz.h
src/sdl/sf_resource.c

index e472834051a8fef77470daad99dacecc8655604b..7fbf312155f91913b831c920f5789da53dcd1cb1 100644 (file)
@@ -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;
index a65f3d278b1655974bed4e7027a98cd011c5c1e8..ccbf25bbcace0ffdf3e874c3863e6f009b48b7d9 100644 (file)
@@ -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)))