Previous 199869 Revisions Next

r18146 Tuesday 25th September, 2012 at 17:40:40 UTC by hap
fix y board sprite colors (the 3ff to 7ff change)
[src/mame/video]segahang.c segaorun.c segas16a.c segas16b.c segas18.c segaybd.c system16.c

trunk/src/mame/video/segas18.c
r18145r18146
273273
274274                  // otherwise, just add in sprite palette base
275275                  else
276                     dest[x] = 1024 + (pix & 0x3ff);
276                     dest[x] = 0x400 | (pix & 0x3ff);
277277               }
278278            }
279279         }
trunk/src/mame/video/segaorun.c
r18145r18146
122122
123123                  // otherwise, just add in sprite palette base
124124                  else
125                     dest[x] = 1024 + (pix & 0x3ff);
125                     dest[x] = 0x400 | (pix & 0x3ff);
126126               }
127127            }
128128         }
r18145r18146
189189
190190                  // otherwise, just add in sprite palette base
191191                  else
192                     dest[x] = 2048 + (pix & 0x7ff);
192                     dest[x] = 0x800 | (pix & 0x7ff);
193193               }
194194            }
195195         }
trunk/src/mame/video/segaybd.c
r18145r18146
9797
9898                  // otherwise, just add in sprite palette base
9999                  else
100                     dest[x] = 2048 + (pix & 0x3ff);
100                     dest[x] = 0x800 | (pix & 0x7ff);
101101               }
102102            }
103103         }
trunk/src/mame/video/system16.c
r18145r18146
681681
682682                  // otherwise, just add in sprite palette base
683683                  else
684                     dest[x] = 1024 + (pix & 0x3ff);
684                     dest[x] = 0x400 | (pix & 0x3ff);
685685               }
686686            }
687687         }
r18145r18146
752752
753753                  // otherwise, just add in sprite palette base
754754                  else
755                     dest[x] = 1024 + (pix & 0x3ff);
755                     dest[x] = 0x400 | (pix & 0x3ff);
756756               }
757757            }
758758         }
r18145r18146
832832
833833                  // otherwise, just add in sprite palette base
834834                  else
835                     dest[x] = 1024 + (pix & 0x3ff);
835                     dest[x] = 0x400 | (pix & 0x3ff);
836836               }
837837            }
838838         }
r18145r18146
896896
897897                  // otherwise, just add in sprite palette base
898898                  else
899                     dest[x] = 1024 + (pix & 0x3ff);
899                     dest[x] = 0x400 | (pix & 0x3ff);
900900               }
901901            }
902902         }
trunk/src/mame/video/segas16a.c
r18145r18146
111111
112112                  // otherwise, just add in sprite palette base
113113                  else
114                     dest[x] = 1024 + (pix & 0x3ff);
114                     dest[x] = 0x400 | (pix & 0x3ff);
115115               }
116116            }
117117         }
trunk/src/mame/video/segahang.c
r18145r18146
121121
122122                     // otherwise, just add in sprite palette base
123123                     else
124                        dest[x] = 1024 + (pix & 0x3ff);
124                        dest[x] = 0x400 | (pix & 0x3ff);
125125                  }
126126               }
127127            }
r18145r18146
146146
147147                     // otherwise, just add in sprite palette base
148148                     else
149                        dest[x] = 1024 + (pix & 0x3ff);
149                        dest[x] = 0x400 | (pix & 0x3ff);
150150                  }
151151               }
152152            }
trunk/src/mame/video/segas16b.c
r18145r18146
111111
112112                  // otherwise, just add in sprite palette base
113113                  else
114                     dest[x] = 1024 + (pix & 0x3ff);
114                     dest[x] = 0x400 | (pix & 0x3ff);
115115               }
116116            }
117117         }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team