Changeset 74 for trunk/LocalPlayer/Term.pas
- Timestamp:
- Jan 15, 2017, 5:04:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Term.pas
r73 r74 3411 3411 with Reg do 3412 3412 try 3413 OpenKey( 'SOFTWARE\cevo\RegVer9', false);3413 OpenKey(AppRegistryKey, false); 3414 3414 if ValueExists('TileWidth') then xxt := ReadInteger('TileWidth') div 2 3415 3415 else xxt := 48; … … 3423 3423 else CityRepMask := Cardinal(not chPopIncrease and not chNoGrowthWarning and 3424 3424 not chCaptured); 3425 CloseKey;3426 3425 if OptionChecked and (7 shl 16) = 0 then 3427 3426 OptionChecked := OptionChecked or (1 shl 16); … … 7993 7992 with Reg do 7994 7993 try 7995 OpenKey( 'SOFTWARE\cevo\RegVer9', true);7994 OpenKey(AppRegistryKey, true); 7996 7995 WriteInteger('TileWidth', xxt * 2); 7997 7996 WriteInteger('TileHeight', yyt * 2); … … 7999 7998 WriteInteger('MapOptionChecked', MapOptionChecked); 8000 7999 WriteInteger('CityReport', integer(CityRepMask)); 8001 CloseKey;8002 8000 finally 8003 8001 Free;
Note:
See TracChangeset
for help on using the changeset viewer.