mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 21:26:07 +00:00
Merge pull request #5611 from JosJuice/reorganize-file-namespace
Reorganize File namespace
This commit is contained in:
commit
8f460a1cda
104 changed files with 349 additions and 259 deletions
|
@ -131,7 +131,7 @@ bool CompileShaderToSPV(SPIRVCodeVector* out_code, EShLanguage stage, const char
|
|||
"%sbad_%s_%04i.txt", File::GetUserPath(D_DUMP_IDX).c_str(), stage_filename, counter++);
|
||||
|
||||
std::ofstream stream;
|
||||
OpenFStream(stream, filename, std::ios_base::out);
|
||||
File::OpenFStream(stream, filename, std::ios_base::out);
|
||||
if (stream.good())
|
||||
{
|
||||
stream << full_source_code << std::endl;
|
||||
|
@ -199,7 +199,7 @@ bool CompileShaderToSPV(SPIRVCodeVector* out_code, EShLanguage stage, const char
|
|||
stage_filename, counter++);
|
||||
|
||||
std::ofstream stream;
|
||||
OpenFStream(stream, filename, std::ios_base::out);
|
||||
File::OpenFStream(stream, filename, std::ios_base::out);
|
||||
if (stream.good())
|
||||
{
|
||||
stream << full_source_code << std::endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue