mirror of https://github.com/stella-emu/stella.git
Fixed incorrect bankswitch hotspots for 'MDM' scheme in the debugger.
Changed next version # to 4.6.5; 4.7 will include improved paddle emulation, but it's not ready yet. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3196 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
cc7943610d
commit
4e1b4c95f9
|
@ -16,7 +16,7 @@
|
|||
|
||||
* Added mappable events for toggling TV color/BW, left difficulty A/B
|
||||
and right difficulty A/B. This means that one key, joystick button,
|
||||
etc can be used to toggle each event. Thanks to Buzbard of AtariAge
|
||||
etc. can be used to toggle each event. Thanks to Buzbard of AtariAge
|
||||
for the suggestion.
|
||||
|
||||
* Added ability to edit values in more widgets in the debugger. For
|
||||
|
|
|
@ -308,7 +308,7 @@ void PNGLibrary::writeComments(png_structp png_ptr, png_infop info_ptr,
|
|||
for(uInt32 i = 0; i < numComments; ++i)
|
||||
{
|
||||
text_ptr[i].key = (char*) comments[i].first.c_str();
|
||||
text_ptr[i].text = (char*) comments[i].second.toString().c_str();
|
||||
text_ptr[i].text = (char*) comments[i].second.toCString();
|
||||
text_ptr[i].compression = PNG_TEXT_COMPRESSION_NONE;
|
||||
text_ptr[i].text_length = 0;
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <cstdlib>
|
||||
|
||||
#define STELLA_VERSION "4.7_pre"
|
||||
#define STELLA_VERSION "4.6.5_pre"
|
||||
#define STELLA_BUILD atoi("$Rev$" + 6)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -34,7 +34,7 @@ CartridgeMDMWidget::CartridgeMDMWidget(
|
|||
ostringstream info;
|
||||
info << "Menu Driven Megacart, containing up to 128 4K banks\n"
|
||||
<< "Startup bank = " << cart.myStartBank << "\n"
|
||||
<< "\nBanks are selected by reading from $800 - $FFF, where the lower "
|
||||
<< "\nBanks are selected by reading from $800 - $BFF, where the lower "
|
||||
"byte determines the 4K bank to use.";
|
||||
|
||||
int xpos = 10,
|
||||
|
|
Loading…
Reference in New Issue