Fix black screen when graphics packs are used (#541)
This commit is contained in:
parent
87d2f8ad55
commit
6f985c3c78
1 changed files with 1 additions and 1 deletions
|
@ -1179,7 +1179,7 @@ std::vector<uint64> GraphicPack2::ParseTitleIds(IniParser& rules, const char* op
|
|||
void GraphicPack2::ApplyShaderPresets(std::string& shader_source) const
|
||||
{
|
||||
const auto active_presets = GetActivePresets();
|
||||
const std::regex regex(R"($[a-zA-Z_0-9]+)");
|
||||
const std::regex regex(R"(\$[a-zA-Z_0-9]+)");
|
||||
|
||||
std::smatch match;
|
||||
size_t offset = 0;
|
||||
|
|
Loading…
Reference in a new issue