Add save file warning for detailed ram usage

This commit is contained in:
Martin Fournier 2022-01-06 21:13:38 -05:00
parent 4363aa43fe
commit 8b2ad883e4

@ -43,6 +43,11 @@ export function mem(
for (const entry of verboseEntries) {
terminal.print(`${numeralWrapper.formatRAM(entry.cost * numThreads).padStart(8)} | ${entry.name} (${entry.type})`);
}
if (ramUsage > 0 && verboseEntries.length === 0) {
// Let's warn the user that he might need to save his script again to generate the detailed entries
terminal.warn('You might have to open & save this script to see the detailed RAM usage information.');
}
} catch (e) {
terminal.error(e + "");
}