From 84c0eebb3e1d4b9c1787efd1472428d3f7bc31fa Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Mon, 22 Jun 2015 05:35:34 +1000 Subject: [PATCH] Can't spell (nw) --- src/emu/video/rgbvmx.c | 2 +- src/emu/video/rgbvmx.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/video/rgbvmx.c b/src/emu/video/rgbvmx.c index f8ef0f09cb8..3c9af91adfe 100644 --- a/src/emu/video/rgbvmx.c +++ b/src/emu/video/rgbvmx.c @@ -23,7 +23,7 @@ const rgbaint_t::VECU32 rgbaint_t::alpha_mask = { 0x00000000, 0xffffffff, 0xffff const rgbaint_t::VECU32 rgbaint_t::red_mask = { 0xffffffff, 0x00000000, 0xffffffff, 0xffffffff }; const rgbaint_t::VECU32 rgbaint_t::green_mask = { 0xffffffff, 0xffffffff, 0x00000000, 0xffffffff }; const rgbaint_t::VECU32 rgbaint_t::blue_mask = { 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000 }; -const rgbaint_t::VECU8 rgbaint_t::merge_aplha_perm = { 16, 17, 18, 19, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }; +const rgbaint_t::VECU8 rgbaint_t::merge_alpha_perm = { 16, 17, 18, 19, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }; const rgbaint_t::VECU16 rgbaint_t::scale_table[256] = { { 0, 256, 0, 256, 0, 256, 0, 256 }, { 1, 255, 1, 255, 1, 255, 1, 255 }, { 2, 254, 2, 254, 2, 254, 2, 254 }, { 3, 253, 3, 253, 3, 253, 3, 253 }, diff --git a/src/emu/video/rgbvmx.h b/src/emu/video/rgbvmx.h index 9c2b6ce35a1..9e87997d868 100644 --- a/src/emu/video/rgbvmx.h +++ b/src/emu/video/rgbvmx.h @@ -471,7 +471,7 @@ protected: static const VECU32 red_mask; static const VECU32 green_mask; static const VECU32 blue_mask; - static const VECU8 merge_aplha_perm; + static const VECU8 merge_alpha_perm; static const VECU16 scale_table[256]; };