diff --git a/CMakeLists.txt b/CMakeLists.txt index b7895cbbd0..b0683f625c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ set(DOLZEL_FILES src/m_Do/m_Do_printf.cpp src/m_Do/m_Do_audio.cpp src/m_Do/m_Do_controller_pad.cpp - src/m_Do/m_Re_controller_pad.cpp + #src/m_Do/m_Re_controller_pad.cpp src/m_Do/m_Do_graphic.cpp src/m_Do/m_Do_machine.cpp src/m_Do/m_Do_mtx.cpp diff --git a/src/dusk/stubs.c b/src/dusk/stubs.c index c223756678..ccc6db6044 100644 --- a/src/dusk/stubs.c +++ b/src/dusk/stubs.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include @@ -1242,3 +1243,23 @@ f32 PSVECSquareMag(const Vec* v) { void PSVECSubtract(const Vec* a, const Vec* b, Vec* a_b) { puts("PSVECSubtract is a stub"); } + +void* VIGetCurrentFrameBuffer(void) { + puts("VIGetCurrentFrameBuffer is a stub"); + return NULL; +} + +u32 VIGetDTVStatus(void) { + puts("VIGetDTVStatus is a stub"); + return 0; +} + +void* VIGetNextFrameBuffer(void) { + puts("VIGetNextFrameBuffer is a stub"); + return NULL; +} + +VIRetraceCallback VISetPreRetraceCallback(VIRetraceCallback cb) { + puts("VISetPreRetraceCallback is a stub"); + return NULL; +}