diff options
| author | 2016-10-21 12:35:05 +0200 | |
|---|---|---|
| committer | 2016-10-21 12:35:05 +0200 | |
| commit | d2e8f6114903bd3f4841cec91bc77c1ca7e8dca4 (patch) | |
| tree | 88327ab5fc2eda9fbd905f284584fe5879fbe0a1 /src/devices/machine/stvcd.cpp | |
| parent | a291e77b2cfc4ce1b780db0d8fa664fb8094d365 (diff) | |
dynamic_buffer is just std::vector<UINT8> (nw)
Diffstat (limited to 'src/devices/machine/stvcd.cpp')
| -rw-r--r-- | src/devices/machine/stvcd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/stvcd.cpp b/src/devices/machine/stvcd.cpp index aed8d46aea1..f7e382ef176 100644 --- a/src/devices/machine/stvcd.cpp +++ b/src/devices/machine/stvcd.cpp @@ -2142,7 +2142,7 @@ void saturn_state::make_dir_current(UINT32 fad) { int i; UINT32 nextent, numentries; - dynamic_buffer sect(MAX_DIR_SIZE); + std::vector<UINT8> sect(MAX_DIR_SIZE); direntryT *curentry; memset(§[0], 0, MAX_DIR_SIZE); |
