mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-14 05:24:16 +02:00
Update to v094r38 release.
byuu says: I'll post more detailed changes later, but basically: - fixed Baldur's Gate bug - guess if no flash ROM ID present (fixes Magical Vacation, many many others) - nall cleanups - sfc/cartridge major cleanups - bsxcartridge/"bsx" renamed to mcc/"mcc" after the logic chip it uses (consistency with SGB/ICD2) - ... and more!
This commit is contained in:
@@ -18,7 +18,7 @@ template<bool Insensitive, bool Quoted> auto _split(lstring& self, rstring sourc
|
||||
|
||||
string& s = self(matches);
|
||||
s.resize(n - base);
|
||||
memory::copy(s.pointer(), p + base, n - base);
|
||||
memory::copy(s.get(), p + base, n - base);
|
||||
|
||||
n += find.size();
|
||||
base = n;
|
||||
@@ -27,7 +27,7 @@ template<bool Insensitive, bool Quoted> auto _split(lstring& self, rstring sourc
|
||||
|
||||
string& s = self(matches);
|
||||
s.resize(size - base);
|
||||
memory::copy(s.pointer(), p + base, size - base);
|
||||
memory::copy(s.get(), p + base, size - base);
|
||||
|
||||
return self;
|
||||
}
|
||||
|
Reference in New Issue
Block a user