Procházet zdrojové kódy

fixed Woverflow warning

master
Pete McNeil před 4 roky
rodič
revize
1c39f8286f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      snf_saccades.hpp

+ 1
- 1
snf_saccades.hpp Zobrazit soubor

@@ -17,7 +17,7 @@ class saccade {
private:
const static unsigned int stretchSize = 8;
const static unsigned int stretchMark = stretchSize / 2;
const static unsigned int stretchMask = ((~0UL) ^ (stretchSize - 1));
const static unsigned int stretchMask = ((~0U) ^ (stretchSize - 1));
unsigned int stretchLeft(unsigned int s) {
s = (stretchMark > s) ? s : (s - (stretchMark));

Načítá se…
Zrušit
Uložit