mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-09-05 09:05:45 +00:00
Nits
This commit is contained in:
parent
90a048afc2
commit
4c57432e2f
2 changed files with 4 additions and 3 deletions
|
@ -16,9 +16,9 @@ namespace Audio::Interpolation {
|
||||||
using StereoFrame16 = Audio::DSPMixer::StereoFrame<s16>;
|
using StereoFrame16 = Audio::DSPMixer::StereoFrame<s16>;
|
||||||
|
|
||||||
struct State {
|
struct State {
|
||||||
// Two historical samples.
|
// Two history samples.
|
||||||
std::array<s16, 2> xn1 = {}; //< x[n-1]
|
std::array<s16, 2> xn1 = {}; // x[n-1]
|
||||||
std::array<s16, 2> xn2 = {}; //< x[n-2]
|
std::array<s16, 2> xn2 = {}; // x[n-2]
|
||||||
// Current fractional position.
|
// Current fractional position.
|
||||||
u64 fposition = 0;
|
u64 fposition = 0;
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
class ElidedLabel : public QLabel {
|
class ElidedLabel : public QLabel {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit ElidedLabel(Qt::TextElideMode elideMode = Qt::ElideLeft, QWidget* parent = nullptr);
|
explicit ElidedLabel(Qt::TextElideMode elideMode = Qt::ElideLeft, QWidget* parent = nullptr);
|
||||||
explicit ElidedLabel(QString text, Qt::TextElideMode elideMode = Qt::ElideLeft, QWidget* parent = nullptr);
|
explicit ElidedLabel(QString text, Qt::TextElideMode elideMode = Qt::ElideLeft, QWidget* parent = nullptr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue