mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-08 07:54:11 -08:00
Emit boolean constants as numbers
This commit is contained in:
parent
c246bb6e1e
commit
1200354a7b
|
@ -155,6 +155,8 @@ public class RenderingContext {
|
|||
}
|
||||
} else if (cst instanceof Character) {
|
||||
return Integer.toString((Character) cst);
|
||||
} else if (cst instanceof Boolean) {
|
||||
return (Boolean) cst ? "1" : "0";
|
||||
} else {
|
||||
return cst.toString();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user