aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/util
Commit message (Collapse)AuthorAge
* citra-qt: Use std::abs() to get the right absolute function for s64.Gravatar Emmanuel Gil Peyrot2015-04-14
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | 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.Gravatar Rohit Nirmal2015-01-30
|
* citra-qt: Renamed all .hxx headers to .hGravatar chrisvj2015-01-06
|
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ | | | | License change
| * License changeGravatar purpasmart962014-12-20
| |
* | Clean up some warningsGravatar Chin2014-12-20
|/
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* citra-qt: Add a utility spinbox class called CSpinBox.Gravatar Tony Wasserka2014-12-09
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.