Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add helper function for creating a readable byte size string. | archshift | 2015-10-02 | 2 | -0/+16 |
| | |||||
* | citra_qt: Reorganize headers | Lioncash | 2015-09-11 | 2 | -2/+2 |
| | |||||
* | citra-qt: Add a missing header guard to util.h | Lioncash | 2015-08-26 | 1 | -0/+2 |
| | |||||
* | citra-qt: Add helper function to get a monospace QFont | Yuri Kunde Schlesner | 2015-08-25 | 2 | -0/+21 |
| | |||||
* | citra-qt: Use std::abs() to get the right absolute function for s64. | Emmanuel Gil Peyrot | 2015-04-14 | 1 | -1/+2 |
| | |||||
* | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 2015-02-11 | 1 | -3/+2 |
| | | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft. | ||||
* | Silence a few warnings. | Rohit Nirmal | 2015-01-30 | 1 | -1/+1 |
| | |||||
* | citra-qt: Renamed all .hxx headers to .h | chrisvj | 2015-01-06 | 2 | -1/+1 |
| | |||||
* | Merge pull request #291 from purpasmart96/license | bunnei | 2014-12-21 | 2 | -2/+2 |
|\ | | | | | License change | ||||
| * | License change | purpasmart96 | 2014-12-21 | 2 | -2/+2 |
| | | |||||
* | | Clean up some warnings | Chin | 2014-12-20 | 1 | -1/+1 |
|/ | |||||
* | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 2014-12-13 | 1 | -1/+1 |
| | |||||
* | citra-qt: Add a utility spinbox class called CSpinBox. | Tony Wasserka | 2014-12-09 | 2 | -0/+391 |
This class has a few advantages over the regular QSpinBox: - QSpinBox stores its as signed 32 bit integers, which for instance is unsuitable for representing memory addresses. CSpinBox uses 64 bit integers instead. - QSpinBox does not provide an easy way to handle number input from bases different than 10. - QSpinBox is quite inflexible in general and almost any sort of customization requires reimplementing it anyway. |