summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/kc_cas.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-21 12:35:05 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-21 12:35:05 +0200
commitd2e8f6114903bd3f4841cec91bc77c1ca7e8dca4 (patch)
tree88327ab5fc2eda9fbd905f284584fe5879fbe0a1 /src/lib/formats/kc_cas.cpp
parenta291e77b2cfc4ce1b780db0d8fa664fb8094d365 (diff)
dynamic_buffer is just std::vector<UINT8> (nw)
Diffstat (limited to 'src/lib/formats/kc_cas.cpp')
-rw-r--r--src/lib/formats/kc_cas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/kc_cas.cpp b/src/lib/formats/kc_cas.cpp
index e357261ec5e..2e9638d19c9 100644
--- a/src/lib/formats/kc_cas.cpp
+++ b/src/lib/formats/kc_cas.cpp
@@ -212,7 +212,7 @@ static int kc_handle_tap(INT16 *buffer, const UINT8 *casdata)
static int kc_handle_sss(INT16 *buffer, const UINT8 *casdata)
{
- dynamic_buffer sss(kc_image_size + 11);
+ std::vector<UINT8> sss(kc_image_size + 11);
// tries to generate the missing head
memset(&sss[0], 0xd3, 3);