mirror of https://github.com/AxioDL/metaforce.git
Update submodules
This commit is contained in:
parent
7b05b41d34
commit
a434118f27
|
@ -127,7 +127,7 @@ def read_cmdargs():
|
|||
# Complete sequences of statements compiled/executed here
|
||||
def exec_compbuf(compbuf, globals):
|
||||
if verbosity_level >= 3:
|
||||
print('EXEC', compbuf)
|
||||
print(compbuf)
|
||||
try:
|
||||
co = compile(compbuf, '<HECL>', 'exec')
|
||||
exec(co, globals)
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ffbd1a0bcda633d324eb82cd55fa14dcb2f33401
|
||||
Subproject commit 132c7def65a78f5915e199de805abb672c291d98
|
|
@ -1 +1 @@
|
|||
Subproject commit af50bc0bc21855dbe2b49cb5b40fdde1f4a925f9
|
||||
Subproject commit c642bccf03be3b48f7b62fb22146cf17249d4d80
|
|
@ -252,7 +252,7 @@ struct ShaderCompiler<PlatformType::Metal> {
|
|||
ret.second = libLen + 1;
|
||||
fread(&ret.first.get()[1], 1, libLen, fin);
|
||||
fclose(fin);
|
||||
unlink(libFile);
|
||||
unlink(libFile.c_str());
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
|
@ -222,7 +222,7 @@ bool Compiler::includeFile(SystemStringView file, std::string& out, int depth) {
|
|||
SystemString directory;
|
||||
auto slashPos = file.find_last_of(_SYS_STR("/\\"));
|
||||
if (slashPos != SystemString::npos)
|
||||
directory = SystemString(file.begin(), file.begin() + slashPos);
|
||||
directory = SystemString(file.data(), slashPos);
|
||||
else
|
||||
directory = _SYS_STR(".");
|
||||
|
||||
|
|
Loading…
Reference in New Issue