Fixed compiler warnings for Windows builds.
Added -Werror to Windows makefiles.
This commit is contained in:
parent
334992ef54
commit
2b892d2a7a
168 changed files with 1927 additions and 1963 deletions
|
|
@ -883,6 +883,9 @@ Channel* Channel::BlockTemplate( Chip* chip, Bit32u samples, Bit32s* output ) {
|
|||
return (this + 2);
|
||||
}
|
||||
break;
|
||||
case sm2Percussion:
|
||||
case sm3Percussion:
|
||||
break;
|
||||
}
|
||||
//Init the operators with the the current vibrato and tremolo values
|
||||
Op( 0 )->Prepare( chip );
|
||||
|
|
@ -954,6 +957,9 @@ Channel* Channel::BlockTemplate( Chip* chip, Bit32u samples, Bit32s* output ) {
|
|||
output[ i * 2 + 0 ] += sample & maskLeft;
|
||||
output[ i * 2 + 1 ] += sample & maskRight;
|
||||
break;
|
||||
case sm2Percussion:
|
||||
case sm3Percussion:
|
||||
break;
|
||||
}
|
||||
}
|
||||
switch( mode ) {
|
||||
|
|
|
|||
|
|
@ -58,18 +58,11 @@ int video_sharpness;
|
|||
int tandy_mode_control = 0;
|
||||
|
||||
static bool new_cga = 0;
|
||||
static bool is_bw = 0;
|
||||
static bool is_bpp1 = 0;
|
||||
|
||||
static uint8_t comp_pal[256][3];
|
||||
|
||||
static Bit8u byte_clamp_other(int v) { return v < 0 ? 0 : (v > 255 ? 255 : v); }
|
||||
|
||||
FILE *df;
|
||||
|
||||
void update_cga16_color(uint8_t cgamode) {
|
||||
int x;
|
||||
Bit32u x2;
|
||||
|
||||
if (!new_cga) {
|
||||
min_v = chroma_multiplexer[0] + intensity[0];
|
||||
|
|
|
|||
Loading…
Reference in a new issue