Remove some unused private properties.

This commit is contained in:
Unknown W. Brackets 2016-05-21 08:18:08 -07:00
parent b09c2b1f75
commit a913e0f0fc
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ private:
void InvalidateICache(u32 addr, int size);
void SkipCodes(int count);
void SkipAllCodes();
bool cheatsOn, exit2, cheatEnabled;
bool exit2, cheatEnabled;
int GetAddress(int value);
std::vector<std::string> codeNameList;

View File

@ -365,7 +365,8 @@ public:
maxCount_(500) {}
void Draw(UIContext &dc) override;
void Update(const InputState &input_state) override;
void Axis(const AxisInput &input) override{
void Axis(const AxisInput &input) override {
// TODO: Check input.deviceId?
if (input.axisId == xAxis_) {
curX_ = input.value;
} else if (input.axisId == yAxis_) {

View File

@ -203,7 +203,6 @@ private:
std::string *value_;
std::string textEditValue_;
std::string placeholder_;
int step_;
int maxLen_;
};