diff options
| author | David Spruill <[email protected]> | 2026-07-20 18:02:42 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-20 18:02:42 -0400 |
| commit | 511c6abeb6fa009a3f9c39cd099d512e2915ca42 (patch) | |
| tree | 7d8b5a04e58d567fb0d3a28f320e305391f9628a /video/KMDOD/blthw.cxx | |
| parent | 15640356a5a6eeafefff403f6d287821213635cd (diff) | |
| parent | 47e616d951b7a5aa379d7727d394d9ddc08ebd3b (diff) | |
Merge pull request #1343 from Spruill-1/user/daspr/kmodsamplefixdevelop
Correct the buggy KMOD sample
Diffstat (limited to 'video/KMDOD/blthw.cxx')
| -rw-r--r-- | video/KMDOD/blthw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/KMDOD/blthw.cxx b/video/KMDOD/blthw.cxx index 2e6d2e5d..f9e8a51b 100644 --- a/video/KMDOD/blthw.cxx +++ b/video/KMDOD/blthw.cxx @@ -282,7 +282,7 @@ BDD_HWBLT::ExecutePresentDisplayOnly( SIZE_T size = sizeof(DoPresentMemory) + sizeMoves + sizeRects; DoPresentMemory* ctx = reinterpret_cast<DoPresentMemory*> - (new (PagedPool) BYTE[size]); + (new (BDD_POOL_TYPE::Paged) BYTE[size]); if (!ctx) { |
