mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
Marking unimplemented translations as non-fatal.
This commit is contained in:
parent
c86e479214
commit
934b0d5bbc
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ void ShaderTranslator::EmitTranslationError(const char* message) {
|
|||
|
||||
void ShaderTranslator::EmitUnimplementedTranslationError() {
|
||||
Shader::Error error;
|
||||
error.is_fatal = true;
|
||||
error.is_fatal = false;
|
||||
error.message = "Unimplemented translation";
|
||||
// TODO(benvanik): location information.
|
||||
errors_.push_back(std::move(error));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue