aboutsummaryrefslogtreecommitdiff
path: root/Source/Serial.c
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate dprintf over printfXavier Del Campo Romero2021-01-031-2/+0
|
* Removed SIO interrupt (it caused VBlank ISR not to be triggered).Xavier ASUS2018-11-301-8/+0
| | | | | | | Added Gfx wait on LoadMenuEnd(). Otherwise, some levels would not start after loading all required files. Also, added GPU wait on Menu.c before entering the main loop. An invalid index inside sound table was being accessed when creating an arrival flight. This made the game crash only under real hardware. Other minor changes and fixes.
* Bugfix: minutes were not being retrieved from PLT files.Xavier ASUS2018-11-251-9/+17
| | | | | | Game.c: parking slots cannot be selected if an aircraft in STATE_PARKED state is on it. Other fixes and improvements. Added some tiles from TILESET2.TIM
* Optimization flag changed from -Os to -O3 (seems to perform better FPS-wise).Xavier ASUS2018-11-231-2/+2
| | | | Improved const-correctness and scope for some variables.
* * Trimmed ending whitespaces.XaviDCR922017-09-161-1/+1
| | | | * Makefile now generates output TIM files automatically, using 'cat whatever.flags' files as flags for bmp2tim.
* * Minor changes (spaces between "if"/"for"... instructions).XaviDCR922017-08-301-7/+6
| | | | + Added output ELF file with debugging symbols for nocash.
* * Added comments on System.XaviDCR922017-07-271-0/+9
| | | | | | | * Files needed for Game are now only loaded once, except from LEVEL1.PLT. * Added DevMenu to get debug info. * ISR_LoadMenuVBlank() does not stop when accessing SIO. * On fopen() and SERIAL_INTERFACE defined, "#" is prepended and "@" is appended to filename string.
* + Added support for SIO (Serial Input Output).XaviDCR922017-07-201-0/+102
* On SystemLoadFileToBuffer(), files can be now uploaded to PSX using QPSXSerial.