Compare commits

..

No commits in common. "f489b79e9a0f9cf91b97b1f3e8190009b4483b3d" and "16765291fa2122dfd53cb4bce015a315a9a503b7" have entirely different histories.

3 changed files with 0 additions and 5 deletions

View File

@ -23,8 +23,6 @@ namespace AxibugEmuOnline.Client
void Resume(); void Resume();
/// <summary> 启动模拟器逻辑 </summary> /// <summary> 启动模拟器逻辑 </summary>
MsgBool StartGame(RomFile romFile); MsgBool StartGame(RomFile romFile);
/// <summary> 释放模拟器核心 </summary>
void Dispose();
/// <summary> 重置核心,通常由模拟器核心提供的功能 </summary> /// <summary> 重置核心,通常由模拟器核心提供的功能 </summary>
void DoReset(); void DoReset();
/// <summary> 获得模拟器核心的控制器设置器 </summary> /// <summary> 获得模拟器核心的控制器设置器 </summary>

View File

@ -101,7 +101,6 @@ namespace AxibugEmuOnline.Client.Manager
public void StopGame() public void StopGame()
{ {
if (m_emuCore.IsNull()) return; if (m_emuCore.IsNull()) return;
m_emuCore.Dispose();
GameObject.Destroy(m_emuCore.gameObject); GameObject.Destroy(m_emuCore.gameObject);
m_emuCore = null; m_emuCore = null;

View File

@ -216,7 +216,5 @@ namespace AxibugEmuOnline.Client
{ {
return ControllerMapper; return ControllerMapper;
} }
public void Dispose() { }
} }
} }