diff options
author | Tarek Soliman | 2012-02-15 15:17:37 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-15 15:26:51 -0600 |
commit | 856744aa6a8d10ea62807a28df24f539fd8f2d06 (patch) | |
tree | 718d3a36c20a16f34d507d750e8fe56d8876d144 /backends/platform/maemo | |
parent | ea325909cf1a2652e75c707395199ff4276e40ba (diff) | |
download | scummvm-rg350-856744aa6a8d10ea62807a28df24f539fd8f2d06.tar.gz scummvm-rg350-856744aa6a8d10ea62807a28df24f539fd8f2d06.tar.bz2 scummvm-rg350-856744aa6a8d10ea62807a28df24f539fd8f2d06.zip |
MAEMO: Use bitshifting in ModelType
Diffstat (limited to 'backends/platform/maemo')
-rw-r--r-- | backends/platform/maemo/maemo-common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/maemo/maemo-common.h b/backends/platform/maemo/maemo-common.h index cd4bb3b027..30279bc2ef 100644 --- a/backends/platform/maemo/maemo-common.h +++ b/backends/platform/maemo/maemo-common.h @@ -28,10 +28,10 @@ namespace Maemo { enum ModelType { - kModelType770 = 1, - kModelTypeN800 = 2, - kModelTypeN810 = 4, - kModelTypeN900 = 8, + kModelType770 = 1 << 0, + kModelTypeN800 = 1 << 1, + kModelTypeN810 = 1 << 2, + kModelTypeN900 = 1 << 3, kModelTypeInvalid = 0 }; |