summaryrefslogtreecommitdiffstats
path: root/src/emu/video/resnet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/resnet.cpp')
-rw-r--r--src/emu/video/resnet.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/video/resnet.cpp b/src/emu/video/resnet.cpp
index 0ae03e2ed14..1b467d016c4 100644
--- a/src/emu/video/resnet.cpp
+++ b/src/emu/video/resnet.cpp
@@ -459,7 +459,7 @@ int compute_res_net(int inputs, int channel, const res_net_info &di)
double vcc = di.vcc;
double ttlHRes = 0;
double rGnd = di.rgb[channel].rGnd;
- UINT8 OpenCol = di.OpenCol;
+ uint8_t OpenCol = di.OpenCol;
/* Global options */
@@ -692,15 +692,15 @@ int compute_res_net(int inputs, int channel, const res_net_info &di)
return (int) (v * 255 / vcc + 0.4);
}
-void compute_res_net_all(std::vector<rgb_t> &rgb, const UINT8 *prom, const res_net_decode_info &rdi, const res_net_info &di)
+void compute_res_net_all(std::vector<rgb_t> &rgb, const uint8_t *prom, const res_net_decode_info &rdi, const res_net_info &di)
{
- UINT8 r,g,b;
+ uint8_t r,g,b;
int i,j,k;
rgb.resize(rdi.end - rdi.start + 1);
for (i=rdi.start; i<=rdi.end; i++)
{
- UINT8 t[3] = {0,0,0};
+ uint8_t t[3] = {0,0,0};
int s;
for (j=0;j<rdi.numcomp;j++)
for (k=0; k<3; k++)