mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-30 21:00:19 +02:00
Update to v106r52 release.
byuu says: I stand corrected, I managed to create and even larger diff than ever. This one weighs in at 309KiB `>__>` I'll have to create a changelog later, I'm too tired right now to go through all of that.
This commit is contained in:
@@ -36,7 +36,7 @@ auto string::qupcase() -> string& {
|
||||
return *this;
|
||||
}
|
||||
|
||||
auto string::transform(string_view from, string_view to) -> string& {
|
||||
auto string::transform(view<string> from, view<string> to) -> string& {
|
||||
if(from.size() != to.size() || from.size() == 0) return *this; //patterns must be the same length
|
||||
char* p = get();
|
||||
for(uint n = 0; n < size(); n++) {
|
||||
|
Reference in New Issue
Block a user