diff options
author | Max Lingua | 2014-01-10 00:55:03 -0500 |
---|---|---|
committer | Max Lingua | 2014-01-18 13:39:44 -0500 |
commit | 00b2e12897345298406abe17318dd130887fe353 (patch) | |
tree | 8ca2ffc5346b0175093da61e74201b133875391c | |
parent | e73027f2b8891eb84abd700c7832efd0dcbf0898 (diff) | |
download | scummvm-rg350-00b2e12897345298406abe17318dd130887fe353.tar.gz scummvm-rg350-00b2e12897345298406abe17318dd130887fe353.tar.bz2 scummvm-rg350-00b2e12897345298406abe17318dd130887fe353.zip |
PS2: Ps2Pad::initPad added case STAT_NONE
-rw-r--r-- | backends/platform/ps2/ps2pad.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/ps2/ps2pad.cpp b/backends/platform/ps2/ps2pad.cpp index 60787bb796..22c3f4258c 100644 --- a/backends/platform/ps2/ps2pad.cpp +++ b/backends/platform/ps2/ps2pad.cpp @@ -104,7 +104,8 @@ void Ps2Pad::initPad(void) { _padStatus = STAT_OKAY; break; case STAT_OKAY: - // pad is already initialized + case STAT_NONE: + // pad is already initialized (or not there) break; } } else { |