mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
TONY: Translate some remaining italian comments
This commit is contained in:
parent
b12ccad994
commit
92a9820f33
@ -222,7 +222,7 @@ static int evaluateAndFreeExpression(byte *expr) {
|
||||
int num = *expr;
|
||||
one = (LPEXPRESSION)(expr + 1);
|
||||
|
||||
// 1) Sostituzioni delle variabili
|
||||
// 1) Substitutions of variables
|
||||
cur = one;
|
||||
for (int i = 0; i < num; i++, cur++) {
|
||||
if (cur->type == ELT_VAR) {
|
||||
@ -231,7 +231,7 @@ static int evaluateAndFreeExpression(byte *expr) {
|
||||
}
|
||||
}
|
||||
|
||||
// 2) Sostituzioni delle parentesi (tramite ricorsione)
|
||||
// 2) Replacement of brackets (using recursive calls)
|
||||
cur = one;
|
||||
for (int i = 0; i < num; i++, cur++) {
|
||||
if (cur->type == ELT_PARENTH2) {
|
||||
@ -240,7 +240,7 @@ static int evaluateAndFreeExpression(byte *expr) {
|
||||
}
|
||||
}
|
||||
|
||||
// 3) Risoluzione algebrica
|
||||
// 3) algebraic resolution
|
||||
solve(one, num);
|
||||
int val = one->val.num;
|
||||
globalDestroy(expr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user