summaryrefslogtreecommitdiff
path: root/atari
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix use of uninitialised scroll values.Michael Drake2014-05-201-1/+2
|
* Fix line endings.Michael Drake2014-05-201-2/+2
|
* Various fixes informed by cppcheck.Michael Drake2014-05-201-14/+4
| | | | Removal of unused variables and dead assignements.
* Fix rgb check.Michael Drake2014-05-201-1/+1
| | | | It was doing the same check on green twice, and not checking blue.
* Remove unused variables.Michael Drake2014-05-201-3/+0
|
* Remove redundant NULL check.Michael Drake2014-05-201-13/+12
|
* Fix line endings.Michael Drake2014-05-201-227/+227
|
* Remove unused variable.Michael Drake2014-05-201-1/+0
|
* Fix line endings.Michael Drake2014-05-201-114/+114
|
* Remove unused variables.Michael Drake2014-05-201-3/+0
|
* Fix redundant if/else.Michael Drake2014-05-201-5/+1
|
* Fix line endings.Michael Drake2014-05-201-16/+16
|
* Remove unused variables.Michael Drake2014-05-201-5/+0
|
* Fix if/else with duplicate branches.Michael Drake2014-05-201-5/+2
|
* Fix line endings.Michael Drake2014-05-201-16/+16
|
* Scope reduce some variables.Michael Drake2014-05-191-2/+2
|
* Remove unused variables.Michael Drake2014-05-191-7/+0
|
* Remove unused variable.Michael Drake2014-05-191-1/+0
|
* Fix line endings.Michael Drake2014-05-191-16/+16
|
* Remove unused variables.Michael Drake2014-05-191-3/+0
|
* Remove unused variables.Michael Drake2014-05-191-3/+1
|
* Remove duplicate condition.Michael Drake2014-05-191-1/+1
|
* Scope reduce variables.Michael Drake2014-05-191-2/+2
|
* Fix line endings.Michael Drake2014-05-191-55/+55
|
* Remove unused variables.Michael Drake2014-05-191-5/+0
|
* Scope reduce some variables.Michael Drake2014-05-191-2/+2
|
* Fix line endings.Michael Drake2014-05-191-197/+197
|
* Remove unused variables.Michael Drake2014-05-191-2/+0
|
* Fix line endings.Michael Drake2014-05-191-316/+316
|
* Remove unused variables.Michael Drake2014-05-191-3/+1
|
* Fix line endings.Michael Drake2014-05-191-248/+248
|
* Remove unused variables.Michael Drake2014-05-191-5/+0
|
* Remove if/else with duplicate branches.Michael Drake2014-05-191-6/+1
|
* Fix line endings.Michael Drake2014-05-191-21/+21
|
* Socpe reduce two variables.Michael Drake2014-05-191-2/+2
|
* Fix line endings.Michael Drake2014-05-191-65/+65
|
* Remove unused variables.Michael Drake2014-05-191-2/+0
|
* Remove unused variable.Michael Drake2014-05-191-1/+0
|
* Remove if/else with duplicate branches.Michael Drake2014-05-191-5/+1
|
* Make line endings consistent.Michael Drake2014-05-191-288/+288
|
* Scope reduce some variables.Michael Drake2014-05-191-8/+8
|
* make atari font plotting include css header explicitlyVincent Sanders2014-05-181-0/+1
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-1/+1
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-3/+8
|
* undo some overzellous include removalVincent Sanders2014-05-091-0/+1
|
* remove unecessary utils/url.h includesVincent Sanders2014-05-099-12/+21
|
* make download_context_get_url() return an nsurl and adapt callers to copeVincent Sanders2014-05-081-3/+0
|
* refactor url utility functions to use standard nserror codes and have ↵Vincent Sanders2014-05-081-1/+0
| | | | appropriate documentation.
* fix silly errors in atari and amiga file operation table changeVincent Sanders2014-05-071-1/+1
|
* add file operations table and make all frontends use it.Vincent Sanders2014-05-073-56/+4
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.