Advertisement
dominus

Untitled

Sep 27th, 2020
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. Compiling src/mame/drivers/spg2xx_senario.cpp...
  2. ../../../../../src/mame/drivers/spg2xx_pdc.cpp:243:42: error: result of '2^8' is
  3. 10; did you mean '1 << 8' (256)? [-Werror,-Wxor-used-as-pow]
  4. src[i] = bitswap<16>(src[i], 3^8,11^8,2^8,10^8,1^8,9^8,0...
  5. ~^~
  6. 1 << 8
  7. ../../../../../src/mame/drivers/spg2xx_pdc.cpp:243:42: note: replace expression
  8. with '0x2 ^ 8' or use 'xor' instead of '^' to silence this warning
  9. ../../../../../src/mame/drivers/spg2xx_pdc.cpp:243:47: error: result of '10^8'
  10. is 2; did you mean '1e8'? [-Werror,-Wxor-used-as-pow]
  11. src[i] = bitswap<16>(src[i], 3^8,11^8,2^8,10^8,1^8,9^8,0...
  12. ~~^~
  13. 1e8
  14. ../../../../../src/mame/drivers/spg2xx_pdc.cpp:243:47: note: replace expression
  15. with '0xA ^ 8' or use 'xor' instead of '^' to silence this warning
  16. 2 errors generated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement