Merge remote-tracking branch 'upstream/master'

This commit is contained in:
dP
2025-09-28 02:33:49 +05:00
926 changed files with 37901 additions and 27368 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ std::optional<std::string_view> VideoDriver_Null::Start(const StringList &parm)
this->ticks = GetDriverParamInt(parm, "ticks", 1000);
auto saveptr = GetDriverParam(parm, "save");
this->savefile = saveptr ? saveptr : "";
this->savefile = saveptr.value_or("");
_screen.width = _screen.pitch = _cur_resolution.width;
_screen.height = _cur_resolution.height;
_screen.dst_ptr = nullptr;