fix a NullReferenceException this time...
this thing is getting annoying now
This commit is contained in:
parent
0170d8f0f0
commit
66282a25aa
|
@ -810,11 +810,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
Render();
|
||||
|
||||
IDisposable raMemHack = (RA as RAIntegration)?.ThisIsTheRAMemHack();
|
||||
var raMemHack = (RA as RAIntegration)?.ThisIsTheRAMemHack();
|
||||
|
||||
CheckMessages();
|
||||
|
||||
if (RA is RAIntegration) raMemHack!.Dispose();
|
||||
if (RA is not null) raMemHack?.Dispose();
|
||||
|
||||
if (_exitRequestPending)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue