diff options
| author | Franklin Wei <git@fwei.tk> | 2015-05-23 18:56:45 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2015-05-23 18:56:45 -0400 |
| commit | 65420c45267df9289990cb3befa078753160ab1b (patch) | |
| tree | ce02944cedb0ad28b129355506b1d842a376e4ad /src/main.c | |
| parent | c09f5635ce6edda4a93025a556565921cadc300e (diff) | |
| download | market-sim-65420c45267df9289990cb3befa078753160ab1b.zip market-sim-65420c45267df9289990cb3befa078753160ab1b.tar.gz market-sim-65420c45267df9289990cb3befa078753160ab1b.tar.bz2 market-sim-65420c45267df9289990cb3befa078753160ab1b.tar.xz | |
better support for no curses mode
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,11 @@ int main(int argc, char *argv[]) else player->cash.cents = 1000 * 100; + if(args_status & ARG_VERBOSE) + { + output("Verbose operation enabled.\n"); + } + while(1) { const struct command_t commands[] = { |