diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-17 22:47:10 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-17 22:47:10 +0100 |
commit | a8131ea5ed00c11517c2cb605834eb103ecac250 (patch) | |
tree | ad172298ea5d68e708eb232b07cea456ee413c86 /src/listing.c | |
parent | 24ebb224a11d31bfe039352fd29d2b89368583ac (diff) |
Various fixes
* Added VCS example, which highlighted some bug in the zero page detection.
* 6502 fixes for the above. Still a problem with code generation.
* Updates to Gameboy code (example still not working in emulator).
* Fixed listing not being generated when enabled.
Diffstat (limited to 'src/listing.c')
-rw-r--r-- | src/listing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/listing.c b/src/listing.c index 2168309..59c3491 100644 --- a/src/listing.c +++ b/src/listing.c @@ -162,7 +162,7 @@ static void BuildArgs(Varchar *str, int argc, char *argv[], int quoted[]) static void Output(const char *fmt, ...) { - if (IsFirstPass() && options.enabled) + if (IsFinalPass() && options.enabled) { va_list va; |