Add a special termination message for ML_ERROR_FRAME_CONVERSION

This commit is contained in:
Cameron Gutman
2022-10-04 19:51:49 -05:00
parent ad1808fb4e
commit aa6c32968b
3 changed files with 6 additions and 0 deletions

View File

@@ -1913,6 +1913,10 @@ public class Game extends Activity implements SurfaceHolder.Callback,
message = getResources().getString(R.string.early_termination_error);
break;
case MoonBridge.ML_ERROR_FRAME_CONVERSION:
message = getResources().getString(R.string.frame_conversion_error);
break;
default:
message = getResources().getString(R.string.conn_terminated_msg);
break;