2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 18:24:55 +00:00

Update submodules

This commit is contained in:
Jack Andersen
2019-08-31 10:38:06 -10:00
parent 7b05b41d34
commit a434118f27
5 changed files with 5 additions and 5 deletions

View File

@@ -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)

2
hecl/extern/athena vendored

Submodule hecl/extern/athena updated: ffbd1a0bcd...132c7def65

2
hecl/extern/boo vendored

Submodule hecl/extern/boo updated: af50bc0bc2...c642bccf03

View File

@@ -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;

View File

@@ -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(".");