mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-13 21:44:05 +02:00
Update to v095r07 release.
byuu says: Changelog: - entire GBA core ported to auto function() -> return; syntax - fixed GBA BLDY bug that was causing flickering in a few games - replaced nall/config usage with nall/string/markup/node - this merges all configuration files to a unified settings.bml file - added "Ignore Manifests" option to the advanced setting tab - this lets you keep a manifest.bml for an older version of higan; if you want to do regression testing Be sure to remap your controller/hotkey inputs, and for SNES, choose "Gamepad" from "Controller Port 1" in the system menu. Otherwise you won't get any input. No need to blow away your old config files, unless you want to.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
namespace nall {
|
||||
|
||||
auto string::operator[](signed position) const -> const char& {
|
||||
auto string::operator[](int position) const -> const char& {
|
||||
if(position > size() + 1) throw exception_out_of_bounds{};
|
||||
return data()[position];
|
||||
}
|
||||
@@ -49,7 +49,7 @@ auto string::empty() const -> bool {
|
||||
return size() == 0;
|
||||
}
|
||||
|
||||
auto string::length() const -> unsigned {
|
||||
auto string::length() const -> uint {
|
||||
return strlen(data());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user