Add comments.
All checks were successful
The build was successful.

This commit is contained in:
2019-06-19 10:14:01 +02:00
parent bd24aa0605
commit ca51e2a5da
2 changed files with 4 additions and 0 deletions

View File

@@ -126,12 +126,15 @@ static sxi32 EngineConfig(ph7 *pEngine, sxi32 nOp, va_list ap) {
case 'G':
case 'g':
nMemLimit *= 1024;
/* FALLTHRU */
case 'M':
case 'm':
nMemLimit *= 1024;
/* FALLTHRU */
case 'K':
case 'k':
nMemLimit *= 1024;
/* FALLTHRU */
}
}
if(nMemLimit >= 1048576) {