Fix support to select clones.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
0f8f7da2b8
commit
1334d461b4
8 changed files with 17 additions and 2 deletions
|
@ -118,7 +118,8 @@ namespace
|
|||
REGSAVE(TEXT(REGVALUE_SLOT5), (DWORD)g_Slot5);
|
||||
}
|
||||
|
||||
const std::vector<eApple2Type> computerTypes = {A2TYPE_APPLE2, A2TYPE_APPLE2PLUS, A2TYPE_APPLE2E, A2TYPE_APPLE2EENHANCED};
|
||||
const std::vector<eApple2Type> computerTypes = {A2TYPE_APPLE2, A2TYPE_APPLE2PLUS, A2TYPE_APPLE2E, A2TYPE_APPLE2EENHANCED,
|
||||
A2TYPE_PRAVETS82, A2TYPE_PRAVETS8M, A2TYPE_PRAVETS8A, A2TYPE_TK30002E};
|
||||
|
||||
int getApple2ComputerType()
|
||||
{
|
||||
|
|
|
@ -8,5 +8,10 @@
|
|||
<file>resources/Hddrvr.bin</file>
|
||||
<file>resources/Parallel.rom</file>
|
||||
<file>resources/MouseInterface.rom</file>
|
||||
<file>resources/Apple2_Plus.rom</file>
|
||||
<file>resources/PRAVETS8C.ROM</file>
|
||||
<file>resources/PRAVETS8M.ROM</file>
|
||||
<file>resources/PRAVETS82.ROM</file>
|
||||
<file>resources/TK3000e.rom</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
1
source/frontends/qapple/resources/Apple2_Plus.rom
Symbolic link
1
source/frontends/qapple/resources/Apple2_Plus.rom
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/Apple2_Plus.rom
|
1
source/frontends/qapple/resources/PRAVETS82.ROM
Symbolic link
1
source/frontends/qapple/resources/PRAVETS82.ROM
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/PRAVETS82.ROM
|
1
source/frontends/qapple/resources/PRAVETS8C.ROM
Symbolic link
1
source/frontends/qapple/resources/PRAVETS8C.ROM
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/PRAVETS8C.ROM
|
1
source/frontends/qapple/resources/PRAVETS8M.ROM
Symbolic link
1
source/frontends/qapple/resources/PRAVETS8M.ROM
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/PRAVETS8M.ROM
|
1
source/frontends/qapple/resources/TK3000e.rom
Symbolic link
1
source/frontends/qapple/resources/TK3000e.rom
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/TK3000e.rom
|
|
@ -165,7 +165,11 @@ std::string MAKEINTRESOURCE(int x)
|
|||
case IDR_APPLE2_ROM: return "Apple2.rom";
|
||||
case IDR_APPLE2_PLUS_ROM: return "Apple2_Plus.rom";
|
||||
case IDR_APPLE2E_ROM: return "Apple2e.rom";
|
||||
case IDR_APPLE2E_ENHANCED_ROM: return "Apple2e_Enhanced.rom";
|
||||
case IDR_APPLE2E_ENHANCED_ROM: return "Apple2e_Enhanced.rom";
|
||||
case IDR_PRAVETS_82_ROM: return "PRAVETS82.ROM";
|
||||
case IDR_PRAVETS_8C_ROM: return "PRAVETS8C.ROM";
|
||||
case IDR_PRAVETS_8M_ROM: return "PRAVETS8M.ROM";
|
||||
case IDR_TK3000_2E_ROM: return "TK3000e.rom";
|
||||
|
||||
case IDR_DISK2_FW: return "DISK2.rom";
|
||||
case IDR_SSC_FW: return "SSC.rom";
|
||||
|
|
Loading…
Add table
Reference in a new issue