mirror of https://github.com/stella-emu/stella.git
Minor syntax corrections.
This commit is contained in:
parent
98b2b9b1c3
commit
09be43c506
|
@ -63,8 +63,8 @@ class StreamReader : public Serializable
|
||||||
return static_cast<bool>(myFile);
|
return static_cast<bool>(myFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isValid() {
|
bool isValid() const {
|
||||||
return (myFileSize > 0) ? true:false;
|
return myFileSize > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void blankPartialLines(bool index) {
|
void blankPartialLines(bool index) {
|
||||||
|
|
Loading…
Reference in New Issue