mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-20 18:41:59 +02:00
Update to v094r44 release.
byuu says: Changelog: - return open bus instead of mirroring addresses on the bus (fixes Mario&Luigi, Minish Cap, etc) [Jonas Quinn] - add boolean flag to load requests for slotted game carts (fixes slot load prompts) - rename BS-X Town cart from psram to ram - icarus: add support for game database Note: I didn't rename "bsx" to "mcc" in the database for icarus before uploading that. But I just fixed it locally, so it'll be in the next WIP. For now, make it create the manifest for you and then rename it yourself. I did fix the PSRAM size to 256kbit.
This commit is contained in:
@@ -59,17 +59,17 @@ auto string::format(const nall::format& params) -> type& {
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<typename T, typename... P> auto append(format& self, const T& value, P&&... p) -> format& {
|
||||
self.vector<string>::append(value);
|
||||
append(self, std::forward<P>(p)...);
|
||||
template<typename T, typename... P> auto format::append(const T& value, P&&... p) -> format& {
|
||||
vector<string>::append(value);
|
||||
return append(forward<P>(p)...);
|
||||
}
|
||||
|
||||
auto append(format& self) -> format& {
|
||||
return self;
|
||||
auto format::append() -> format& {
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<typename... P> auto print(P&&... p) -> void {
|
||||
string s{std::forward<P>(p)...};
|
||||
string s{forward<P>(p)...};
|
||||
fputs(s.data(), stdout);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user