Debugger: Fixed edit label dropdown being empty from SA-1 debugger
This commit is contained in:
parent
468eb8e796
commit
29175d7454
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace Mesen.GUI.Debugger
|
|||
|
||||
CpuType cpuType = label.MemoryType.ToCpuType();
|
||||
cboType.Items.Clear();
|
||||
if(cpuType == CpuType.Cpu) {
|
||||
if(cpuType == CpuType.Cpu || cpuType == CpuType.Sa1) {
|
||||
if(DebugApi.GetMemorySize(SnesMemoryType.PrgRom) > 0) {
|
||||
cboType.Items.Add(ResourceHelper.GetEnumText(SnesMemoryType.PrgRom));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue