summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libconsole.h
Commit message (Collapse)AuthorAgeFilesLines
* Chance function(void) to function()reaverb2014-05-241-6/+6
|
* Make inline functions static.Adam Borowski2012-08-091-1/+1
| | | | | | | | | This avoids unnecessary non-inlined copies. Also, we had a few large functions that had no reason for inlining, let's have them be regular ones. I also made "static inline" always use the same order, for easier grepping.
* Simplify and improve the startup menu layout (#5602).Raphael Langella2012-04-291-0/+1
| | | | | | | Logic is unified between console and tiles. We now use the full available size instead of leaving the last line for some reason. It should be relatively easy to make it respect tile_menu_icons = false, although I'm not sure it's worth bothering.
* Remove redundant platform specific display flushing.Adam Borowski2011-12-021-1/+0
| | | | It's already done in update_screen() anyway.
* Combine common parts of lib*.hAdam Borowski2011-09-081-0/+48
Having different prototypes for different ports without a good reason is bad. After unification, it's easier to have, for example, two ports at once.