예제 #1
0
파일: QuickNES.cs 프로젝트: budzikt/BizHawk
 public void Dispose()
 {
     if (Context != IntPtr.Zero)
     {
         LibQuickNES.qn_delete(Context);
         Context = IntPtr.Zero;
     }
 }
예제 #2
0
 public void Dispose()
 {
     if (Context != IntPtr.Zero)
     {
         QN.qn_delete(Context);
         Context = IntPtr.Zero;
     }
 }
예제 #3
0
 public void Dispose()
 {
     if (Context != IntPtr.Zero)
     {
         LibQuickNES.qn_delete(Context);
         Context = IntPtr.Zero;
     }
     if (VideoOutput != null)
     {
         VideoOutputH.Free();
         VideoOutput = null;
     }
 }