mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-19 03:21:35 +02:00
v108.9
* multi-monitor support * improved pause/frame advance support * added option to disable video dimming when idle
This commit is contained in:
@@ -52,7 +52,7 @@ template<typename T> auto string::_prepend(const stringify<T>& source) -> string
|
||||
|
||||
template<typename T, typename... P> auto string::append(const T& value, P&&... p) -> string& {
|
||||
_append(make_string(value));
|
||||
if constexpr(sizeof...(p)) append(forward<P>(p)...);
|
||||
if constexpr(sizeof...(p) > 0) append(forward<P>(p)...);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user