mirror of https://github.com/stella-emu/stella.git
Merge branch 'master' of https://github.com/stella-emu/stella
This commit is contained in:
commit
0de952b0cb
|
@ -4947,7 +4947,7 @@ Ms Pac-Man (Stella extended codes):
|
|||
<tr><td>FA2 </td><td>CBS RAM Plus 24/28K </td><td>.FA2 </td></tr>
|
||||
<tr><td>FC </td><td>Amiga Power Play Aracde 16/32K </td><td>.FC </td></tr>
|
||||
<tr><td>FE </td><td>8K Activision (aka SCABS)</td><td>.FE </td></tr>
|
||||
<tr><td>GL </td><td>GameLine Master Module</td><td>.GL </td></tr>
|
||||
<tr><td>GL ²</td><td>4 or 6K GameLine Master Module</td><td>.GL </td></tr>
|
||||
<tr><td>MDM </td><td>Menu Driven Megacart </td><td>.MDM </td></tr>
|
||||
<tr><td>MVC </td><td>Movie Cart</td><td>.MVC </td></tr>
|
||||
<tr><td>SB </td><td>128-256K SUPERbanking </td><td>.SB </td></tr>
|
||||
|
|
|
@ -182,7 +182,7 @@ Bankswitch::Sizes = {{
|
|||
{ 24_KB, 32_KB }, // _FA2
|
||||
{ 32_KB, 32_KB }, // _FC
|
||||
{ 8_KB, 8_KB }, // _FE
|
||||
{ 4_KB, 4_KB }, // _GL
|
||||
{ 4_KB, 6_KB }, // _GL
|
||||
{ 8_KB, Bankswitch::any_KB }, // _MDM
|
||||
{ 1024_KB, Bankswitch::any_KB }, // _MVC
|
||||
{ 128_KB, 256_KB }, // _SB
|
||||
|
|
|
@ -35,6 +35,8 @@
|
|||
#define __TINYEXIF_H__
|
||||
|
||||
#include <cstdlib> // Added by SA (2023-05-05), needed for gcc-13
|
||||
#include <cstdint>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
Loading…
Reference in New Issue