~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to src/pce_fast/hes.cpp

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-01-31 07:21:35 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20120131072135-es3dj12y00xcnrsk
Tags: 0.9.19-1
* New upstream WIP version.
* Update copyright information.
* Refresh use-system-tremor.patch and remove psx-big-endian-only.patch.
* Add spelling-fixes.patch based on Lintian's recommendations.
* Build-depend on debhelper 9 or later and remove corresponding Lintian
  override.

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
 
230
230
void HES_Close(void)
231
231
{
 
232
 PCECD_Close();
 
233
 
232
234
 if(rom)
233
235
 {
234
236
  MDFN_free(rom);
235
237
  rom = NULL;
236
238
 }
 
239
 
 
240
 if(rom_backup)
 
241
 {
 
242
  MDFN_free(rom_backup);
 
243
  rom_backup = NULL;
 
244
 }
237
245
}
238
246
 
239
247