mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-14 00:20:38 +00:00
- Fixed: One byte is too short for DUMB_IT_SIGRENDERER to store song tempo.
Changed it to a word. SVN r1461 (trunk)
This commit is contained in:
parent
5eeaa130fd
commit
88e32146b9
2 changed files with 5 additions and 3 deletions
|
@ -1,9 +1,11 @@
|
||||||
March 4, 2009
|
March 4, 2009
|
||||||
|
- Fixed: One byte is too short for DUMB_IT_SIGRENDERER to store song tempo.
|
||||||
|
Changed it to a word.
|
||||||
- Went back to using RDTSC for timing on Win32. Ironically,
|
- Went back to using RDTSC for timing on Win32. Ironically,
|
||||||
QueryPerformanceCounter() is obviously using the TSC for its timing on my
|
QueryPerformanceCounter() is obviously using the TSC for its timing on my
|
||||||
machine, yet the overhead it has to do to keep the timer sane is apparently
|
machine, yet the overhead it has to do to keep the timer sane is apparently
|
||||||
visible on a few maps. I suppose I should at some time check clock_gettime()
|
noticeable on a few maps. I suppose I should at some time check
|
||||||
and see if it has similar issues on Linux.
|
clock_gettime() and see if it has similar issues on Linux.
|
||||||
|
|
||||||
March 3, 2009 (Changes by Graf Zahl)
|
March 3, 2009 (Changes by Graf Zahl)
|
||||||
- changed: If a monster with the BOSSDEATH flag is crushed A_BossDeath will
|
- changed: If a monster with the BOSSDEATH flag is crushed A_BossDeath will
|
||||||
|
|
|
@ -666,8 +666,8 @@ struct DUMB_IT_SIGRENDERER
|
||||||
unsigned char globalvolume;
|
unsigned char globalvolume;
|
||||||
signed char globalvolslide;
|
signed char globalvolslide;
|
||||||
|
|
||||||
unsigned char tempo;
|
|
||||||
signed char temposlide;
|
signed char temposlide;
|
||||||
|
unsigned short tempo;
|
||||||
|
|
||||||
IT_CHANNEL channel[DUMB_IT_N_CHANNELS];
|
IT_CHANNEL channel[DUMB_IT_N_CHANNELS];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue